Fix quick actions not working when nonexisting lists where left over in history

This commit is contained in:
kolaente 2021-07-20 18:03:38 +02:00
parent 176c6462bb
commit d81b4117f5
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
6 changed files with 60 additions and 17 deletions

View file

@ -127,7 +127,7 @@ export default {
...Object.values(this.$store.state.lists)])]
lists = (allLists.filter(l => {
if (typeof l === 'undefined') {
if (typeof l === 'undefined' || l === null) {
return false
}