mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-04 01:48:02 +02:00
remove msat fee to sat (#1737)
* remove msat fee * Fixed some formatting
This commit is contained in:
parent
9d8c78c927
commit
2216649412
@ -1,6 +1,6 @@
|
||||
// update cache version every time there is a new deployment
|
||||
// so the service worker reinitializes the cache
|
||||
const CACHE_VERSION = 31
|
||||
const CACHE_VERSION = 32
|
||||
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
||||
|
||||
const getApiKey = request => {
|
||||
|
@ -193,8 +193,12 @@
|
||||
</q-badge>
|
||||
{{ props.row.memo }}
|
||||
<br />
|
||||
<q-tooltip>{{ props.row.date }}</q-tooltip>
|
||||
<i> {{ props.row.dateFrom }}</i>
|
||||
|
||||
<i>
|
||||
{{ props.row.dateFrom }}<q-tooltip
|
||||
>{{ props.row.date }}</q-tooltip
|
||||
></i
|
||||
>
|
||||
</q-td>
|
||||
|
||||
{% endraw %}
|
||||
@ -210,7 +214,7 @@
|
||||
|
||||
<q-td auto-width key="amount" v-else :props="props">
|
||||
{{ props.row.fsat }}<br />
|
||||
<i>fee msats {{ props.row.fee }}</i>
|
||||
<i>fee {{ props.row.fee/1000 }}</i>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
|
||||
|
2
lnbits/static/bundle.min.js
vendored
2
lnbits/static/bundle.min.js
vendored
File diff suppressed because one or more lines are too long
@ -250,17 +250,14 @@ Vue.component('lnbits-payment-details', {
|
||||
<b style="white-space: nowrap;" v-text="$t('memo')"></b>: {{ payment.memo }}
|
||||
</div>
|
||||
|
||||
<div class="row" v-if="payment.webhook">
|
||||
<b v-text="$t('webhook')"></b>:
|
||||
{{ payment.webhook }}
|
||||
<q-badge :color="webhookStatusColor" text-color="white">
|
||||
<div class="text-wrap" v-if="payment.webhook">
|
||||
<b style="white-space: nowrap;" v-text="$t('webhook')"></b>: {{ payment.webhook }}: <q-badge :color="webhookStatusColor" text-color="white">
|
||||
{{ webhookStatusText }}
|
||||
</q-badge>
|
||||
</div>
|
||||
|
||||
<div class="row" v-if="hasPreimage">
|
||||
<b v-text="$t('payment_proof')"></b>:
|
||||
{{ payment.preimage }}
|
||||
<div class="text-wrap" v-if="hasPreimage">
|
||||
<b style="white-space: nowrap;" v-text="$t('payment_proof')"></b>: {{ payment.preimage }}
|
||||
</div>
|
||||
|
||||
<div class="row" v-for="entry in extras">
|
||||
|
Loading…
x
Reference in New Issue
Block a user