Auto stash before rebase of "main"

This commit is contained in:
Tiago Vasconcelos 2023-03-09 10:23:33 +00:00
parent cb1c6446aa
commit d7dae2be8b
2 changed files with 46 additions and 4 deletions

View file

@ -123,7 +123,8 @@
:type="isPwd ? 'password' : 'text'"
v-if="!customerUseExtension"
v-model.trim="checkoutDialog.data.privkey"
hint="Enter your private key or see bellow for instructions"
label="Private key"
hint="Enter your private key"
>
<template v-slot:append>
<q-icon
@ -241,4 +242,23 @@
</q-inner-loading>
</q-card>
</q-dialog>
<!-- ORDER DOWNLOAD DIALOG -->
<q-dialog v-model="downloadOrderDialog.show" position="top">
<q-card class="q-pa-lg q-pt-xl lnbits__dialog-card">
<q-card-section>
<div class="text-h6">Order data</div>
<div class="text-subtitle2">{{ stall.pubkey }}</div>
<small
>Send the bellow message, to the merchant pubkey, in any Nostr
client</small
>
</q-card-section>
<q-separator dark inset />
<q-card-section>
<pre>{{JSON.stringify(downloadOrderDialog.data, null, 2)}}</pre>
</q-card-section>
</q-card>
</q-dialog>
</div>