mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-13 19:37:42 +01:00
fix: create invoice dialog
This commit is contained in:
parent
9aadb3dde4
commit
2b550392ba
2 changed files with 7 additions and 2 deletions
|
@ -30,7 +30,11 @@
|
|||
>
|
||||
<q-card-section style="height: 130px">
|
||||
<div class="row q-gutter-md">
|
||||
<div v-if="'{{ LNBITS_DENOMINATION }}' == 'sats'" class="col-1" style="max-width: 30px">
|
||||
<div
|
||||
v-if="'{{ LNBITS_DENOMINATION }}' == 'sats'"
|
||||
class="col-1"
|
||||
style="max-width: 30px"
|
||||
>
|
||||
<q-btn
|
||||
v-if="g.fiatTracking"
|
||||
@click="swapBalancePriority"
|
||||
|
@ -585,6 +589,7 @@
|
|||
:min="receive.minMax[0]"
|
||||
:max="receive.minMax[1]"
|
||||
:readonly="receive.lnurl && receive.lnurl.fixed"
|
||||
ref="setAmount"
|
||||
></q-input>
|
||||
{% else %}
|
||||
<q-select
|
||||
|
|
|
@ -194,7 +194,7 @@ window.WalletPageLogic = {
|
|||
this.receive.data.memo = null
|
||||
this.receive.unit = this.isFiatPriority
|
||||
? this.g.wallet.currency || 'sat'
|
||||
: 'sat'
|
||||
: '{{ LNBITS_DENOMINATION }}'
|
||||
this.receive.minMax = [0, 2100000000000000]
|
||||
this.receive.lnurl = null
|
||||
this.focusInput('setAmount')
|
||||
|
|
Loading…
Add table
Reference in a new issue