Fix bad var usage

This commit is contained in:
Bubka 2023-10-30 12:54:52 +01:00
parent beb5ee027a
commit d74e0cedac

View File

@ -143,13 +143,13 @@ export const useTwofaccounts = defineStore({
if(confirm(trans('twofaccounts.confirm.delete')) && this.selectedIds.length > 0) { if(confirm(trans('twofaccounts.confirm.delete')) && this.selectedIds.length > 0) {
await twofaccountService.batchDelete(this.selectedIds.join()) await twofaccountService.batchDelete(this.selectedIds.join())
.then(response => { .then(response => {
ids.forEach(function(id) { selectedIds.forEach(function(id) {
this.items = this.items.filter(a => a.id !== id) this.items = this.items.filter(a => a.id !== id)
}) })
useNotifyStore().success({ text: trans('twofaccounts.accounts_deleted') }) useNotifyStore().success({ text: trans('twofaccounts.accounts_deleted') })
}) })
this.refresh() //this.refresh()
} }
}, },