Merge remote-tracking branch 'origin/staging' into add-report-to-collection-functionality

This commit is contained in:
dal 2025-08-22 10:41:57 -06:00
commit cd5ea1a3a6
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 7 additions and 7 deletions

View File

@ -84,19 +84,19 @@ const yourStuff = (
id: BusterRoutes.APP_DASHBOARDS,
active: isActiveCheck('dashboard', BusterRoutes.APP_DASHBOARDS)
},
{
label: 'Collections',
icon: <ASSET_ICONS.collections />,
route: createBusterRoute({ route: BusterRoutes.APP_COLLECTIONS }),
id: BusterRoutes.APP_COLLECTIONS,
active: isActiveCheck('collection', BusterRoutes.APP_COLLECTIONS)
},
{
label: 'Reports',
icon: <ASSET_ICONS.reports />,
route: createBusterRoute({ route: BusterRoutes.APP_REPORTS }),
id: BusterRoutes.APP_REPORTS,
active: isActiveCheck('report', BusterRoutes.APP_REPORTS)
},
{
label: 'Collections',
icon: <ASSET_ICONS.collections />,
route: createBusterRoute({ route: BusterRoutes.APP_COLLECTIONS }),
id: BusterRoutes.APP_COLLECTIONS,
active: isActiveCheck('collection', BusterRoutes.APP_COLLECTIONS)
}
].filter(Boolean) as ISidebarItem[]
};