From abc5b8ff3838b909e258376e004fc163d1814828 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Mon, 10 Feb 2025 12:11:46 +0100 Subject: [PATCH] Fixed Shortcuts --- composables/useDashboard.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composables/useDashboard.ts b/composables/useDashboard.ts index 1607b7b..9f1c4a9 100644 --- a/composables/useDashboard.ts +++ b/composables/useDashboard.ts @@ -8,14 +8,14 @@ const _useDashboard = () => { defineShortcuts({ 'g-h': () => router.push('/'), - 'g-a': () => router.push('/tasks'), - 'g-d': () => router.push('/documents'), - 'g-k': () => router.push('/customers'), - 'g-l': () => router.push('/vendors'), + 'g-a': () => router.push('/standardEntity/tasks'), + 'g-d': () => router.push('/files'), + 'g-k': () => router.push('/standardEntity/customers'), + 'g-l': () => router.push('/standardEntity/vendors'), 'g-s': () => router.push('/settings'), - 'g-p': () => router.push('/projects'), - 'g-v': () => router.push('/contracts'), - 'g-o': () => router.push('/plants'), + 'g-p': () => router.push('/standardEntity/projects'), + 'g-v': () => router.push('/standardEntity/contracts'), + 'g-o': () => router.push('/standardEntity/plants'), '?': () => isHelpSlideoverOpen.value = !isHelpSlideoverOpen.value, n: () => isNotificationsSlideoverOpen.value = !isNotificationsSlideoverOpen.value })