fix: fix module removal removing incorrect module
This commit is contained in:
@@ -100,7 +100,8 @@
|
|||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
const d = await alertConfirm(`${language.removeConfirm}` + rmodule.name)
|
const d = await alertConfirm(`${language.removeConfirm}` + rmodule.name)
|
||||||
if(d){
|
if(d){
|
||||||
$DataBase.modules.splice(i, 1)
|
const index = $DataBase.modules.findIndex((v) => v.id === rmodule.id)
|
||||||
|
$DataBase.modules.splice(index, 1)
|
||||||
$DataBase.modules = $DataBase.modules
|
$DataBase.modules = $DataBase.modules
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
|
|||||||
Reference in New Issue
Block a user