Skip to content

Commit 2e5879e

Browse files
committed
Changed search method in marketplace.
1 parent 249a9ad commit 2e5879e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { Helmet } from "react-helmet";
1313
export function MarketplaceView() {
1414
const [ marketplaceApps, setMarketplaceApps ] = useState<Array<ApplicationMeta>>([]);
1515
const [ localMarketplaceApps, setLocalMarketplaceApps ] = useState<Array<ApplicationMeta>>([]);
16+
const [searchValue, setSearchValue] = useState("");
1617

1718
const fetchMarketplaceApps = async () => {
1819
try {
@@ -60,7 +61,10 @@ export function MarketplaceView() {
6061
localMarketplaceApps={localMarketplaceApps}
6162
globalMarketplaceApps={marketplaceApps}
6263
breadcrumb={[{ text: trans("home.marketplace"), path: MARKETPLACE_URL }]}
63-
mode={"marketplace"} />
64+
mode={"marketplace"}
65+
searchValue={searchValue}
66+
setSearchValue={setSearchValue}
67+
/>
6468
</>
6569
);
6670
};

0 commit comments

Comments
 (0)