diff --git a/components/Calendar.vue b/components/Calendar.vue index 413c1924..9f714152 100644 --- a/components/Calendar.vue +++ b/components/Calendar.vue @@ -2,7 +2,7 @@ #calendar v-calendar( title-position='left' - is-dark + :is-dark="settings['theme.is_dark']" @update:from-page='updatePage' :columns="$screens({ default: 1, lg: 2 })" :locale='$i18n.locale' @@ -29,7 +29,7 @@ export default { }, computed: { ...mapGetters(['filteredEventsWithPast']), - ...mapState(['tags', 'filters', 'in_past']), + ...mapState(['tags', 'filters', 'in_past', 'settings']), // TODO: could be better attributes () { diff --git a/components/Confirm.vue b/components/Confirm.vue new file mode 100644 index 00000000..4360a0ae --- /dev/null +++ b/components/Confirm.vue @@ -0,0 +1,86 @@ + + + + diff --git a/components/Editor.vue b/components/Editor.vue index a1a2f89c..a5067d73 100644 --- a/components/Editor.vue +++ b/components/Editor.vue @@ -1,7 +1,17 @@