Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue
index 10221c9e..e3e3be6b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -40,7 +40,7 @@ import { translate as t } from '@nextcloud/l10n'
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
import Content from '@nextcloud/vue/dist/Components/Content'
-import { mapState } from 'vuex'
+import { mapGetters } from 'vuex'
export default {
name: 'App',
@@ -50,15 +50,16 @@ export default {
Content,
},
computed: {
- ...mapState({
- calendars: state => state.calendars.calendars,
+ ...mapGetters({
+ calendars: 'getTaskCalendars',
}),
},
async beforeMount() {
// get calendars then get tasks
await client.connect({ enableCalDAV: true })
await this.$store.dispatch('fetchCurrentUserPrincipal')
- const { calendars } = await this.$store.dispatch('getCalendarsAndTrashBin')
+ let { calendars } = await this.$store.dispatch('getCalendarsAndTrashBin')
+ calendars = calendars.filter(calendar => calendar.supportsTasks)
const owners = []
calendars.forEach((calendar) => {
if (owners.indexOf(calendar.owner) === -1) {