@@ -211,13 +211,13 @@ export default function ApplicationHome() {
211211 text : < TabLabel > { trans ( "home.profile" ) } </ TabLabel > ,
212212 routePath : USER_PROFILE_URL ,
213213 routeComp : UserProfileView ,
214- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { UserIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ UserIcon" { ...otherProps } width = { "24px" } /> ,
214+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { UserIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { UserIcon } { ...otherProps } width = { "24px" } /> ,
215215 } ,
216216 {
217217 text : < TabLabel > { trans ( "home.news" ) } </ TabLabel > ,
218218 routePath : NEWS_URL ,
219219 routeComp : NewsView ,
220- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { NewsIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ NewsIcon" { ...otherProps } width = { "24px" } /> ,
220+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { NewsIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { NewsIcon } { ...otherProps } width = { "24px" } /> ,
221221 visible : ( { user } ) => user . orgDev ,
222222 style : { color : "red" } ,
223223 } ,
@@ -226,15 +226,15 @@ export default function ApplicationHome() {
226226 routePath : ORG_HOME_URL ,
227227 routePathExact : false ,
228228 routeComp : OrgView ,
229- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { WorkspacesIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ WorkspacesIcon" { ...otherProps } width = { "24px" } /> ,
229+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { WorkspacesIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { WorkspacesIcon } { ...otherProps } width = { "24px" } /> ,
230230 visible : ( { user } ) => ! user . orgDev ,
231231 } ,
232232 {
233233 text : < TabLabel > { trans ( "home.marketplace" ) } </ TabLabel > ,
234234 routePath : MARKETPLACE_URL ,
235235 routePathExact : false ,
236236 routeComp : MarketplaceView ,
237- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { MarketplaceIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ MarketplaceIcon" { ...otherProps } width = { "24px" } /> ,
237+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { MarketplaceIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { MarketplaceIcon } { ...otherProps } width = { "24px" } /> ,
238238 } ,
239239 ]
240240 } ,
@@ -245,13 +245,13 @@ export default function ApplicationHome() {
245245 text : < MoreFoldersWrapper > { trans ( "home.allFolders" ) } </ MoreFoldersWrapper > ,
246246 routePath : FOLDERS_URL ,
247247 routeComp : RootFolderListView ,
248- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { FolderIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ FolderIcon" { ...otherProps } width = { "24px" } /> ,
248+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { FolderIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { FolderIcon } { ...otherProps } width = { "24px" } /> ,
249249 } ,
250250 {
251251 text : < TabLabel > { trans ( "home.allApplications" ) } </ TabLabel > ,
252252 routePath : ALL_APPLICATIONS_URL ,
253253 routeComp : HomeView ,
254- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { AppsIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ AppsIcon" { ...otherProps } width = { "24px" } /> ,
254+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { AppsIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { AppsIcon } { ...otherProps } width = { "24px" } /> ,
255255 } ,
256256 ] ,
257257 } ,
@@ -263,15 +263,15 @@ export default function ApplicationHome() {
263263 text : < TabLabel > { trans ( "home.queryLibrary" ) } </ TabLabel > ,
264264 routePath : QUERY_LIBRARY_URL ,
265265 routeComp : QueryLibraryEditor ,
266- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeQueryLibraryIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ HomeQueryLibraryIcon" { ...otherProps } width = { "24px" } /> ,
266+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeQueryLibraryIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { HomeQueryLibraryIcon } { ...otherProps } width = { "24px" } /> ,
267267 visible : ( { user } ) => user . orgDev ,
268268 } ,
269269 {
270270 text : < TabLabel > { trans ( "home.datasource" ) } </ TabLabel > ,
271271 routePath : DATASOURCE_URL ,
272272 routePathExact : false ,
273273 routeComp : DatasourceHome ,
274- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeDataSourceIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ HomeDataSourceIcon" { ...otherProps } width = { "24px" } /> ,
274+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeDataSourceIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { HomeDataSourceIcon } { ...otherProps } width = { "24px" } /> ,
275275 visible : ( { user } ) => user . orgDev ,
276276 onSelected : ( _ , currentPath ) => currentPath . split ( "/" ) [ 1 ] === "datasource" ,
277277 } ,
@@ -284,7 +284,7 @@ export default function ApplicationHome() {
284284 routePath : "/ee/6600ae8724a23f365ba2ed4c/admin" ,
285285 routePathExact : false ,
286286 routeComp : AppEditor ,
287- icon : ( { selected, ...otherProps } ) => selected ? ( < MultiIconDisplay identifier = { EnterpriseIcon } { ...otherProps } width = { "24px" } /> ) : ( < MultiIconDisplay identifier = "/icon:svg/ EnterpriseIcon" { ...otherProps } width = { "24px" } /> ) ,
287+ icon : ( { selected, ...otherProps } ) => selected ? ( < MultiIconDisplay identifier = { EnterpriseIcon } { ...otherProps } width = { "24px" } /> ) : ( < MultiIconDisplay identifier = { EnterpriseIcon } { ...otherProps } width = { "24px" } /> ) ,
288288 visible : ( { user } ) => user . orgDev ,
289289 } ,
290290 ] ,
@@ -309,7 +309,7 @@ export default function ApplicationHome() {
309309 routePath : SETTING_URL ,
310310 routePathExact : false ,
311311 routeComp : Setting ,
312- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeSettingIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ HomeSettingIcon" { ...otherProps } width = { "24px" } /> ,
312+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { HomeSettingIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { HomeSettingIcon } { ...otherProps } width = { "24px" } /> ,
313313 visible : ( { user } ) => user . orgDev ,
314314 onSelected : ( _ , currentPath ) => currentPath . split ( "/" ) [ 1 ] === "setting" ,
315315 }
@@ -322,7 +322,7 @@ export default function ApplicationHome() {
322322 text : < TabLabel > { trans ( "home.trash" ) } </ TabLabel > ,
323323 routePath : TRASH_URL ,
324324 routeComp : TrashView ,
325- icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { RecyclerIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = "/icon:svg/ RecyclerIcon" { ...otherProps } width = { "24px" } /> ,
325+ icon : ( { selected, ...otherProps } ) => selected ? < MultiIconDisplay identifier = { RecyclerIcon } { ...otherProps } width = { "24px" } /> : < MultiIconDisplay identifier = { RecyclerIcon } { ...otherProps } width = { "24px" } /> ,
326326 visible : ( { user } ) => user . orgDev ,
327327 } ,
328328 ] ,
0 commit comments