Fix Block Library search to include block descriptions (#SKY-7583) (#4617)
This commit is contained in:
@@ -348,7 +348,8 @@ function WorkflowNodeLibraryPanel({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
item.nodeType.toLowerCase().includes(term) ||
|
item.nodeType.toLowerCase().includes(term) ||
|
||||||
item.title.toLowerCase().includes(term)
|
item.title.toLowerCase().includes(term) ||
|
||||||
|
item.description.toLowerCase().includes(term)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user