1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

fix: Aggiornate DrawerEntry

This commit is contained in:
Maicol Battistini
2023-06-01 18:35:08 +02:00
parent 677388ebfb
commit a20f45ca64

View File

@@ -48,8 +48,8 @@ export default class Drawer<A extends DrawerAttributes = DrawerAttributes> exten
entries() {
return collect<VnodeCollectionItem>({
dashboard: <DrawerEntry route="dashboard" icon={mdiViewDashboardOutline}>{__('Dashboard')}</DrawerEntry>,
users: <DrawerEntry route="users.index" icon={mdiAccountGroupOutline}>{__('Utenti')}</DrawerEntry>
dashboard: <DrawerEntry href={route('dashboard')} icon={mdiViewDashboardOutline}>{__('Dashboard')}</DrawerEntry>,
users: <DrawerEntry href={route('users.index')} icon={mdiAccountGroupOutline}>{__('Utenti')}</DrawerEntry>
});
}