1
0

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
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
}