diff --git a/spaces/components/HelpSlideover.vue b/spaces/components/HelpSlideover.vue
index 1c263dc..f561e55 100644
--- a/spaces/components/HelpSlideover.vue
+++ b/spaces/components/HelpSlideover.vue
@@ -9,16 +9,15 @@ const links = [{
label: 'Shortcuts',
icon: 'i-heroicons-key',
trailingIcon: 'i-heroicons-arrow-right-20-solid',
- color: 'gray',
onClick: () => {
shortcuts.value = true
}
}, {
label: 'Documentation',
icon: 'i-heroicons-book-open',
- to: 'https://ui.nuxt.com/pro/guide',
+ to: 'https://fedeo.de',
target: '_blank'
-}, {
+}/*, {
label: 'GitHub repository',
icon: 'i-simple-icons-github',
to: 'https://github.com/nuxt/ui-pro',
@@ -28,31 +27,32 @@ const links = [{
icon: 'i-heroicons-credit-card',
to: 'https://ui.nuxt.com/pro/purchase',
target: '_blank'
-}]
+}*/]
const categories = computed(() => [{
title: 'General',
items: [
- { shortcuts: [metaSymbol.value, 'K'], name: 'Command menu' },
- { shortcuts: ['N'], name: 'Notifications' },
+ { shortcuts: [metaSymbol.value, 'K'], name: 'Hauptmenü' },
+ { shortcuts: ['N'], name: 'Benachrichtigungen' },
{ shortcuts: ['?'], name: 'Help & Support' },
- { shortcuts: ['/'], name: 'Search' }
+ { shortcuts: ['/'], name: 'Suche' }
]
}, {
title: 'Navigation',
items: [
- { shortcuts: ['G', 'H'], name: 'Go to Home' },
+ { shortcuts: ['G', 'H'], name: 'Gehe zu Dashboard' },
+ { shortcuts: ['G', 'A'], name: 'Gehe zu Aufgaben' },/*
{ shortcuts: ['G', 'I'], name: 'Go to Inbox' },
- { shortcuts: ['G', 'U'], name: 'Go to Users' },
- { shortcuts: ['G', 'S'], name: 'Go to Settings' }
+ { shortcuts: ['G', 'U'], name: 'Go to Users' },*/
+ { shortcuts: ['G', 'S'], name: 'Gehe zu Einstellungen' }
]
-}, {
+}, /*{
title: 'Inbox',
items: [
{ shortcuts: ['↑'], name: 'Prev notification' },
{ shortcuts: ['↓'], name: 'Next notification' }
]
-}])
+}*/])
const filteredCategories = computed(() => {
return categories.value.map(category => ({
@@ -66,7 +66,7 @@ const filteredCategories = computed(() => {
-
+
\ No newline at end of file
diff --git a/spaces/components/ProfileDropdown.vue b/spaces/components/ProfileDropdown.vue
index f0ff113..5714b56 100644
--- a/spaces/components/ProfileDropdown.vue
+++ b/spaces/components/ProfileDropdown.vue
@@ -5,7 +5,6 @@ const supabase = useSupabaseClient()
//const tenant = ref(dataStore.currentTenant)
const selectedProfile = ref(dataStore.activeProfile.id)
-console.log(dataStore.ownProfiles)
diff --git a/spaces/composables/useDashboard.ts b/spaces/composables/useDashboard.ts
index b2b2460..1f65cae 100644
--- a/spaces/composables/useDashboard.ts
+++ b/spaces/composables/useDashboard.ts
@@ -9,6 +9,7 @@ const _useDashboard = () => {
defineShortcuts({
'g-h': () => router.push('/'),
'g-a': () => router.push('/tasks'),
+ 'g-s': () => router.push('/settings'),
'?': () => isHelpSlideoverOpen.value = !isHelpSlideoverOpen.value,
n: () => isNotificationsSlideoverOpen.value = !isNotificationsSlideoverOpen.value
})
diff --git a/spaces/layouts/default.vue b/spaces/layouts/default.vue
index 050239b..c215af8 100644
--- a/spaces/layouts/default.vue
+++ b/spaces/layouts/default.vue
@@ -1,6 +1,5 @@
@@ -13,6 +25,8 @@
label: 'Rechnung & Kontakt'
},{
label: 'Lizenz'
+ },{
+ label: 'Funktionen'
},{
label: 'Bankkonten'
},{
@@ -25,6 +39,45 @@
+
+
+
+
+
+
+
+
+
diff --git a/spaces/stores/data.js b/spaces/stores/data.js
index 0887373..53cfd3e 100644
--- a/spaces/stores/data.js
+++ b/spaces/stores/data.js
@@ -570,8 +570,8 @@ export const useDataStore = defineStore('data', () => {
async function fetchOwnProfiles () {
let profiles = (await supabase.from("profiles").select().order("fullName")).data
let conns = (await supabase.from("profileconnections").select()).data.map(i => i.profile_id)
- console.log(conns)
- console.log(profiles.filter(i => conns.includes(i.id)))
+ //console.log(conns)
+ //console.log(profiles.filter(i => conns.includes(i.id)))
ownProfiles.value = profiles.filter(i => conns.includes(i.id))
}