Fix quick actions not working when nonexisting lists where left over in history
This commit is contained in:
parent
176c6462bb
commit
d81b4117f5
6 changed files with 60 additions and 17 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue