diff --git a/lnbits/core/templates/core/account.html b/lnbits/core/templates/core/account.html index 6f81bab85..494099410 100644 --- a/lnbits/core/templates/core/account.html +++ b/lnbits/core/templates/core/account.html @@ -470,7 +470,7 @@ v-model="reactionChoice" :options="reactionOptions" label="Reactions" - @input="reactionChoiceFunc" + @update:model-value="reactionChoiceFunc" > @@ -310,7 +310,7 @@ v-if="o.type === 'number'" type="number" v-model="formData[o.name]" - @input="handleValueChanged" + @update:model-value="handleValueChanged" :label="o.label || o.name" :hint="o.description" :rules="applyRules(o.required)" @@ -322,7 +322,7 @@ type="textarea" rows="5" v-model="formData[o.name]" - @input="handleValueChanged" + @update:model-value="handleValueChanged" :label="o.label || o.name" :hint="o.description" :rules="applyRules(o.required)" @@ -332,7 +332,7 @@ @@ -394,7 +394,7 @@