fix: checkbox disposable default (#98)

was not set
This commit is contained in:
dni ⚡ 2025-08-18 08:38:32 +02:00 committed by GitHub
commit 1805b6d635
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -92,6 +92,7 @@ window.app = Vue.createApp({
show: false, show: false,
fixedAmount: true, fixedAmount: true,
data: { data: {
disposable: true,
zaps: false zaps: false
} }
}, },

View file

@ -242,6 +242,7 @@
<div class="col-12"> <div class="col-12">
<q-checkbox <q-checkbox
dense dense
:toggle-indeterminate="false"
v-model="formDialog.data.disposable" v-model="formDialog.data.disposable"
label="If enabled, the LNURL will not be stored (default)." label="If enabled, the LNURL will not be stored (default)."
/> />