From a6842d959bf5e9b5bd06e3c89e6e18ae4c0c3a18 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 10 Jul 2021 12:35:29 +0200 Subject: [PATCH] Fix quick actions not opening --- src/components/quick-actions/quick-actions.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/quick-actions/quick-actions.vue b/src/components/quick-actions/quick-actions.vue index a428e762..185a050a 100644 --- a/src/components/quick-actions/quick-actions.vue +++ b/src/components/quick-actions/quick-actions.vue @@ -127,6 +127,10 @@ export default { ...Object.values(this.$store.state.lists)])] lists = (allLists.filter(l => { + if (typeof l === 'undefined') { + return false + } + if (l.isArchived) { return false }