From b82061b8d48e320cb0c13fbe4ba9fe46e0ab05a0 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Sat, 6 May 2023 22:59:26 +0200 Subject: [PATCH] Fixed regression: spell slot bubbles are clickable again --- .../attributes/SpellSlotListTile.vue | 57 +++++++++++++++---- 1 file changed, 46 insertions(+), 11 deletions(-) diff --git a/app/imports/client/ui/properties/components/attributes/SpellSlotListTile.vue b/app/imports/client/ui/properties/components/attributes/SpellSlotListTile.vue index 26b5b4da..85482b5f 100644 --- a/app/imports/client/ui/properties/components/attributes/SpellSlotListTile.vue +++ b/app/imports/client/ui/properties/components/attributes/SpellSlotListTile.vue @@ -3,7 +3,6 @@ :key="model._id" class="spell-slot-list-tile" v-bind="$attrs" - :disabled="disabled" v-on="hasClickListener ? {click} : {}" > @@ -26,18 +25,28 @@
- - {{ - i > model.value ? - 'mdi-radiobox-blank' : - 'mdi-radiobox-marked' - }} - + + {{ + i > model.value ? + 'mdi-radiobox-blank' : + 'mdi-radiobox-marked' + }} + +
@@ -53,15 +62,20 @@