chore: use findIndex to remove caldav token
This commit is contained in:
parent
cb067461aa
commit
0299ed32f3
1 changed files with 4 additions and 7 deletions
|
@ -109,13 +109,10 @@ const deleteToken = (token: CaldavTokenModel) => {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
.then(r => {
|
.then(r => {
|
||||||
success(r)
|
success(r)
|
||||||
for (const i in tokens.value) {
|
// @ts-ignore
|
||||||
// @ts-ignore
|
const i = tokens.value.findIndex(v => v.id === token.id)
|
||||||
if (tokens.value[i].id === token.id) {
|
// @ts-ignore
|
||||||
// @ts-ignore
|
tokens.value.splice(i, 1)
|
||||||
tokens.value.splice(i, 1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue