mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 21:21:08 +01:00
Fix delete action button
This commit is contained in:
parent
7744e4a933
commit
909cf6fdc0
1 changed files with 2 additions and 1 deletions
|
|
@ -139,9 +139,10 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) {
|
||||||
*/
|
*/
|
||||||
static async #removeAction(event, button) {
|
static async #removeAction(event, button) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
|
const actionIndex = button.closest('[data-index]').dataset.index;
|
||||||
await this.document.update({
|
await this.document.update({
|
||||||
'system.actions': this.document.system.actions.filter(
|
'system.actions': this.document.system.actions.filter(
|
||||||
(_, index) => index !== Number.parseInt(button.dataset.index)
|
(_, index) => index !== Number.parseInt(actionIndex)
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue