remove msat fee to sat (#1737)

* remove msat fee

* Fixed some formatting
This commit is contained in:
Arc 2023-05-24 20:27:56 +01:00 committed by GitHub
parent 9d8c78c927
commit 2216649412
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 12 deletions

View File

@ -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 => {

View File

@ -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>

File diff suppressed because one or more lines are too long

View File

@ -250,17 +250,14 @@ Vue.component('lnbits-payment-details', {
<b style="white-space: nowrap;" v-text="$t('memo')"></b>:&nbsp;{{ 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>:&nbsp;{{ payment.webhook }}:&nbsp;<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>:&nbsp;{{ payment.preimage }}
</div>
<div class="row" v-for="entry in extras">