From 8466c4c298f075a8d99d82e361fe9d8873b38ce8 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 1 Sep 2024 21:04:48 +0200 Subject: [PATCH] Shorten mint URL (#228) * shorter mint url * adjust button * paste button * nice --- src/components/PayInvoiceDialog.vue | 22 ++++++---- src/components/ReceiveTokenDialog.vue | 58 ++++++++++++++++----------- src/components/TokenInformation.vue | 7 +++- src/js/wallet-helpers.js | 10 ++++- 4 files changed, 63 insertions(+), 34 deletions(-) diff --git a/src/components/PayInvoiceDialog.vue b/src/components/PayInvoiceDialog.vue index b1c47260..0d3c4337 100644 --- a/src/components/PayInvoiceDialog.vue +++ b/src/components/PayInvoiceDialog.vue @@ -55,11 +55,17 @@ payInvoiceData.blocking || payInvoiceData.meltQuote.error != '' " @click="melt" - :label="payInvoiceData.meltQuote.error != '' ? 'Error' : !payInvoiceData.blocking ? 'Pay' : 'Processing...'" + :label=" + payInvoiceData.meltQuote.error != '' + ? 'Error' + : !payInvoiceData.blocking + ? 'Pay' + : 'Processing...' + " :loading="globalMutexLock && !payInvoiceData.blocking" class="q-px-lg" - > -