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";
13
13
export function MarketplaceView ( ) {
14
14
const [ marketplaceApps , setMarketplaceApps ] = useState < Array < ApplicationMeta > > ( [ ] ) ;
15
15
const [ localMarketplaceApps , setLocalMarketplaceApps ] = useState < Array < ApplicationMeta > > ( [ ] ) ;
16
+ const [ searchValue , setSearchValue ] = useState ( "" ) ;
16
17
17
18
const fetchMarketplaceApps = async ( ) => {
18
19
try {
@@ -60,7 +61,10 @@ export function MarketplaceView() {
60
61
localMarketplaceApps = { localMarketplaceApps }
61
62
globalMarketplaceApps = { marketplaceApps }
62
63
breadcrumb = { [ { text : trans ( "home.marketplace" ) , path : MARKETPLACE_URL } ] }
63
- mode = { "marketplace" } />
64
+ mode = { "marketplace" }
65
+ searchValue = { searchValue }
66
+ setSearchValue = { setSearchValue }
67
+ />
64
68
</ >
65
69
) ;
66
70
} ;
You can’t perform that action at this time.
0 commit comments