File tree 1 file changed +9
-8
lines changed
client/packages/lowcoder/src/pages/ApplicationV2
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,14 @@ export default function ApplicationHome() {
360
360
routeComp : NewsView ,
361
361
icon : ( { selected, ...otherProps } ) => selected ? < NewsIcon { ...otherProps } width = { "24px" } /> : < NewsIcon { ...otherProps } width = { "24px" } /> ,
362
362
} ,
363
+ {
364
+ text : < TabLabel > { trans ( "home.marketplace" ) } </ TabLabel > ,
365
+ routePath : MARKETPLACE_URL ,
366
+ routePathExact : false ,
367
+ routeComp : MarketplaceView ,
368
+ icon : ( { selected, ...otherProps } ) => selected ? < MarketplaceIcon { ...otherProps } width = { "24px" } /> : < MarketplaceIcon { ...otherProps } width = { "24px" } /> ,
369
+ visible : ( { user } ) => user . orgDev ,
370
+ } ,
363
371
]
364
372
} ,
365
373
@@ -402,14 +410,7 @@ export default function ApplicationHome() {
402
410
403
411
{
404
412
items : [
405
- {
406
- text : < TabLabel > { trans ( "home.marketplace" ) } </ TabLabel > ,
407
- routePath : MARKETPLACE_URL ,
408
- routePathExact : false ,
409
- routeComp : MarketplaceView ,
410
- icon : ( { selected, ...otherProps } ) => selected ? < MarketplaceIcon { ...otherProps } width = { "24px" } /> : < MarketplaceIcon { ...otherProps } width = { "24px" } /> ,
411
- visible : ( { user } ) => user . orgDev ,
412
- } ,
413
+
413
414
{
414
415
text : < TabLabel > { trans ( "home.queryLibrary" ) } </ TabLabel > ,
415
416
routePath : QUERY_LIBRARY_URL ,
You can’t perform that action at this time.
0 commit comments