File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
client/packages/lowcoder/src/pages/ApplicationV2 Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { Helmet } from "react-helmet";
1313export 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} ;
You can’t perform that action at this time.
0 commit comments