feat: trim frontend values (#12)
This commit is contained in:
parent
4623b2e0a7
commit
82d4c65d1e
1 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@
|
||||||
<q-input
|
<q-input
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
v-model="target.alias"
|
v-model.trim="target.alias"
|
||||||
label="Alias"
|
label="Alias"
|
||||||
:hint="t === targets.length - 1 ? 'A name to identify this target wallet locally.' : undefined"
|
:hint="t === targets.length - 1 ? 'A name to identify this target wallet locally.' : undefined"
|
||||||
style="width: 150px"
|
style="width: 150px"
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
dense
|
dense
|
||||||
v-model="target.wallet"
|
v-model.trim="target.wallet"
|
||||||
label="Target"
|
label="Target"
|
||||||
hint="A wallet ID, invoice key, LNURLp or Lightning Address."
|
hint="A wallet ID, invoice key, LNURLp or Lightning Address."
|
||||||
option-label="name"
|
option-label="name"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue