Fixes error in formatting in wallet

This commit is contained in:
ben 2023-01-04 23:16:26 +00:00
parent 1c6fc8a178
commit 6bb483bfd6

View File

@ -468,10 +468,10 @@
dense
v-model.number="receive.data.amount"
:label="'Amount (' + receive.unit + ') *'"
:mask="receive.unit != 'sats' ? '#.##' : '#'"
:mask="receive.unit != 'sat' ? '#.##' : '#'"
fill-mask="0"
reverse-fill-mask
:step="receive.unit != 'sats' ? '0.01' : '1'"
:step="receive.unit != 'sat' ? '0.01' : '1'"
:min="receive.minMax[0]"
:max="receive.minMax[1]"
:readonly="receive.lnurl && receive.lnurl.fixed"