Skip to content

Commit

Permalink
Added categories dropdown button in Your apps.
Browse files Browse the repository at this point in the history
  • Loading branch information
Imiss-U1025 committed Dec 3, 2024
1 parent 326d27e commit 9fcd924
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions client/packages/lowcoder/src/pages/ApplicationV2/HomeLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,16 @@ export function HomeLayout(props: HomeLayoutProps) {
getPopupContainer={(node: any) => node}
suffixIcon={<ArrowSolidIcon />} />
)}
{mode === "view" &&
<FilterDropdown
style={{ minWidth: "220px" }}
variant="borderless"
value={categoryFilter}
onChange={(value: any) => setCategoryFilter(value as ApplicationCategoriesEnum)}
options={categoryOptions}
// getPopupContainer={(node) => node}
suffixIcon={<ArrowSolidIcon />}
/>}
{mode === "marketplace" && (
<FilterDropdown
style={{ minWidth: "220px" }}
Expand Down

0 comments on commit 9fcd924

Please sign in to comment.