commit: 5515f53794581248de6ca4292fcf5763816110cd
parent 963e1638581a0ea693b6ec6fac202750f59ae502
Author: Sean King <seanking2919@protonmail.com>
Date: Thu, 6 Apr 2023 22:19:36 -0600
Fix lint in lists store
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/stores/lists.js b/src/stores/lists.js
@@ -47,7 +47,7 @@ export const useListsStore = defineStore('lists', {
this.allListsObject[listId] = { accountIds: [] }
}
this.allListsObject[listId].title = title
-
+
const entry = find(this.allLists, { id: listId })
if (!entry) {
this.allLists.push({ id: listId, title })
@@ -96,13 +96,13 @@ export const useListsStore = defineStore('lists', {
const set = new Set(accountIds)
set.delete(accountId)
this.allListsObject[listId].accountIds = [...set]
-
+
return result
})
},
deleteList ({ listId }) {
window.vuex.state.api.backendInteractor.deleteList({ listId })
-
+
delete this.allListsObject[listId]
remove(this.allLists, list => list.id === listId)
}