Some Changes in TimeTracking and boosting Mobile View

This commit is contained in:
2023-12-06 22:26:36 +01:00
parent 2b7bf12bc7
commit 36371f94e8
2 changed files with 62 additions and 29 deletions

View File

@@ -11,6 +11,9 @@ export const useDataStore = defineStore('data', {
ownTenant: {
calendarConfig: {
eventTypes: [] as any[]
},
timeConfig: {
timeTypes: [] as any[]
}
},
profiles: [] as any[],
@@ -150,6 +153,7 @@ export const useDataStore = defineStore('data', {
}),
]
},
getEventTypes: (state) => state.ownTenant.calendarConfig.eventTypes
getEventTypes: (state) => state.ownTenant.calendarConfig.eventTypes,
getTimeTypes: (state) => state.ownTenant.timeConfig.timeTypes
}
})