diff --git a/autogpt_platform/frontend/src/components/edit/control/BlocksControl.tsx b/autogpt_platform/frontend/src/components/edit/control/BlocksControl.tsx index a4183de4d5be..f916809d59e8 100644 --- a/autogpt_platform/frontend/src/components/edit/control/BlocksControl.tsx +++ b/autogpt_platform/frontend/src/components/edit/control/BlocksControl.tsx @@ -85,6 +85,9 @@ export const BlocksControl: React.FC = ({ (block: Block) => (block.name.toLowerCase().includes(searchQuery.toLowerCase()) || beautifyString(block.name) + .toLowerCase() + .includes(searchQuery.toLowerCase()) || + block.description .toLowerCase() .includes(searchQuery.toLowerCase())) && (!selectedCategory ||