Skip to content

Commit 9fcd924

Browse files
committed
Added categories dropdown button in Your apps.
1 parent 326d27e commit 9fcd924

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

client/packages/lowcoder/src/pages/ApplicationV2/HomeLayout.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,16 @@ export function HomeLayout(props: HomeLayoutProps) {
551551
getPopupContainer={(node: any) => node}
552552
suffixIcon={<ArrowSolidIcon />} />
553553
)}
554+
{mode === "view" &&
555+
<FilterDropdown
556+
style={{ minWidth: "220px" }}
557+
variant="borderless"
558+
value={categoryFilter}
559+
onChange={(value: any) => setCategoryFilter(value as ApplicationCategoriesEnum)}
560+
options={categoryOptions}
561+
// getPopupContainer={(node) => node}
562+
suffixIcon={<ArrowSolidIcon />}
563+
/>}
554564
{mode === "marketplace" && (
555565
<FilterDropdown
556566
style={{ minWidth: "220px" }}

0 commit comments

Comments
 (0)