mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-19 20:14:59 +02:00
remove msat fee to sat (#1737)
* remove msat fee * Fixed some formatting
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
// update cache version every time there is a new deployment
|
// update cache version every time there is a new deployment
|
||||||
// so the service worker reinitializes the cache
|
// so the service worker reinitializes the cache
|
||||||
const CACHE_VERSION = 31
|
const CACHE_VERSION = 32
|
||||||
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
||||||
|
|
||||||
const getApiKey = request => {
|
const getApiKey = request => {
|
||||||
|
@@ -193,8 +193,12 @@
|
|||||||
</q-badge>
|
</q-badge>
|
||||||
{{ props.row.memo }}
|
{{ props.row.memo }}
|
||||||
<br />
|
<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>
|
</q-td>
|
||||||
|
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
@@ -210,7 +214,7 @@
|
|||||||
|
|
||||||
<q-td auto-width key="amount" v-else :props="props">
|
<q-td auto-width key="amount" v-else :props="props">
|
||||||
{{ props.row.fsat }}<br />
|
{{ props.row.fsat }}<br />
|
||||||
<i>fee msats {{ props.row.fee }}</i>
|
<i>fee {{ props.row.fee/1000 }}</i>
|
||||||
</q-td>
|
</q-td>
|
||||||
</q-tr>
|
</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 }}
|
<b style="white-space: nowrap;" v-text="$t('memo')"></b>: {{ payment.memo }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row" v-if="payment.webhook">
|
<div class="text-wrap" v-if="payment.webhook">
|
||||||
<b v-text="$t('webhook')"></b>:
|
<b style="white-space: nowrap;" v-text="$t('webhook')"></b>: {{ payment.webhook }}: <q-badge :color="webhookStatusColor" text-color="white">
|
||||||
{{ payment.webhook }}
|
|
||||||
<q-badge :color="webhookStatusColor" text-color="white">
|
|
||||||
{{ webhookStatusText }}
|
{{ webhookStatusText }}
|
||||||
</q-badge>
|
</q-badge>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row" v-if="hasPreimage">
|
<div class="text-wrap" v-if="hasPreimage">
|
||||||
<b v-text="$t('payment_proof')"></b>:
|
<b style="white-space: nowrap;" v-text="$t('payment_proof')"></b>: {{ payment.preimage }}
|
||||||
{{ payment.preimage }}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row" v-for="entry in extras">
|
<div class="row" v-for="entry in extras">
|
||||||
|
Reference in New Issue
Block a user