lint
This commit is contained in:
parent
5b55901611
commit
456f25e94e
1 changed files with 3 additions and 1 deletions
|
|
@ -49,7 +49,9 @@ export const useListsStore = defineStore('lists', {
|
|||
},
|
||||
setLists(value) {
|
||||
this.allLists = value
|
||||
this.allListsObject = Object.fromEntries(value.map((list) => [list.id, list]))
|
||||
this.allListsObject = Object.fromEntries(
|
||||
value.map((list) => [list.id, list]),
|
||||
)
|
||||
},
|
||||
async createList({ title }) {
|
||||
return await createList({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue