Skip to content

Commit dff4713

Browse files
fix comps search
1 parent 3d1d6d8 commit dff4713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/pages/editor/right/uiCompPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const UICompPanel = () => {
145145
const compList = useMemo(
146146
() =>
147147
Object.entries(categories)
148-
.filter(([key]) => !(!isEmpty(searchValue) && (key as UICompCategory) === "dashboards"))
148+
// .filter(([key]) => !(!isEmpty(searchValue) && (key as UICompCategory) === "dashboards"))
149149
.map(([key, value], index) => {
150150
let infos = value;
151151
if (!isEmpty(searchValue)) {

0 commit comments

Comments
 (0)