fix: content property
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
@@ -68,11 +68,11 @@ export const useChronoStore = defineStore('chronoStore', () => {
|
||||
const entities = computed(() => entitiesStore.entities)
|
||||
|
||||
const calendars = computed(() => {
|
||||
return collections.value.filter(col => col.properties.contents?.event)
|
||||
return collectionsStore.collections.filter(col => col.properties.content?.includes('event'))
|
||||
})
|
||||
|
||||
const taskLists = computed(() => {
|
||||
return collections.value.filter(col => col.properties.contents?.task)
|
||||
return collectionsStore.collections.filter(col => col.properties.content?.includes('task'))
|
||||
})
|
||||
|
||||
const events = computed(() => {
|
||||
@@ -146,7 +146,7 @@ export const useChronoStore = defineStore('chronoStore', () => {
|
||||
editingCollection.value = new CollectionObject()
|
||||
editingCollection.value.properties.fromJson({
|
||||
...editingCollection.value.properties.toJson(),
|
||||
contents: { event: true },
|
||||
content: ['event'],
|
||||
})
|
||||
collectionEditorMode.value = 'create'
|
||||
collectionEditorType.value = 'calendar'
|
||||
@@ -157,7 +157,7 @@ export const useChronoStore = defineStore('chronoStore', () => {
|
||||
editingCollection.value = new CollectionObject()
|
||||
editingCollection.value.properties.fromJson({
|
||||
...editingCollection.value.properties.toJson(),
|
||||
contents: { task: true },
|
||||
content: ['task'],
|
||||
})
|
||||
collectionEditorMode.value = 'create'
|
||||
collectionEditorType.value = 'tasklist'
|
||||
|
||||
Reference in New Issue
Block a user