Skip to content

Commit

Permalink
feat: trim frontend values (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
dni authored Sep 29, 2023
1 parent 4623b2e commit 82d4c65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/splitpayments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ <h5 class="text-subtitle1 q-my-none">Target Wallets</h5>
<q-input
dense
outlined
v-model="target.alias"
v-model.trim="target.alias"
label="Alias"
:hint="t === targets.length - 1 ? 'A name to identify this target wallet locally.' : undefined"
style="width: 150px"
></q-input>

<q-input
dense
v-model="target.wallet"
v-model.trim="target.wallet"
label="Target"
hint="A wallet ID, invoice key, LNURLp or Lightning Address."
option-label="name"
Expand Down

0 comments on commit 82d4c65

Please sign in to comment.