We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55fb7f commit db99fd1Copy full SHA for db99fd1
client/packages/lowcoder/src/pages/editor/right/ModulePanel.tsx
@@ -124,7 +124,7 @@ export default function ModulePanel() {
124
if (i.applicationId === applicationId || i.applicationType !== AppTypeEnum.Module) {
125
return false;
126
}
127
- return i.name.includes(searchValue.trim().toLowerCase()) || !searchValue.trim();
+ return i.name?.toLowerCase()?.includes(searchValue.trim()?.toLowerCase()) || !searchValue?.trim();
128
});
129
130
const items = filteredModules.map((i) => (
0 commit comments