v-if all diagonalley things
This commit is contained in:
parent
5765c3c8c9
commit
1a820b4dac
3 changed files with 15 additions and 6 deletions
|
|
@ -253,6 +253,7 @@
|
||||||
>
|
>
|
||||||
</q-select>
|
</q-select>
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="diagonalley"
|
||||||
v-if="keys"
|
v-if="keys"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
|
@ -260,6 +261,8 @@
|
||||||
label="Public Key"
|
label="Public Key"
|
||||||
></q-input>
|
></q-input>
|
||||||
<q-input
|
<q-input
|
||||||
|
|
||||||
|
v-if="diagonalley"
|
||||||
v-if="keys"
|
v-if="keys"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
|
@ -267,7 +270,7 @@
|
||||||
label="Private Key"
|
label="Private Key"
|
||||||
></q-input>
|
></q-input>
|
||||||
<!-- NOSTR -->
|
<!-- NOSTR -->
|
||||||
<div class="row">
|
<div v-if="diagonalley" class="row">
|
||||||
<div class="col-5">
|
<div class="col-5">
|
||||||
<q-btn unelevated @click="generateKeys" color="primary"
|
<q-btn unelevated @click="generateKeys" color="primary"
|
||||||
>Generate keys</q-btn
|
>Generate keys</q-btn
|
||||||
|
|
@ -287,8 +290,8 @@
|
||||||
v-model.trim="stallDialog.data.shippingzones"
|
v-model.trim="stallDialog.data.shippingzones"
|
||||||
label="Shipping Zones"
|
label="Shipping Zones"
|
||||||
></q-select>
|
></q-select>
|
||||||
<!-- NOSTR -->
|
<q-select
|
||||||
<!-- <q-select
|
v-if="diagonalley"
|
||||||
:options="relayOptions"
|
:options="relayOptions"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
|
@ -297,18 +300,19 @@
|
||||||
label="Relays"
|
label="Relays"
|
||||||
></q-select>
|
></q-select>
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="diagonalley"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
v-model.trim="stallDialog.data.crelays"
|
v-model.trim="stallDialog.data.crelays"
|
||||||
label="Custom relays (seperate by comma)"
|
label="Custom relays (seperate by comma)"
|
||||||
></q-input>
|
></q-input>
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="diagonalley"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
v-model.trim="stallDialog.data.nostrShops"
|
v-model.trim="stallDialog.data.nostrShops"
|
||||||
label="Nostr shop public keys (seperate by comma)"
|
label="Nostr shop public keys (seperate by comma)"
|
||||||
></q-input> -->
|
></q-input>
|
||||||
<p>
|
<p>
|
||||||
<strong><small>Nostr support coming soon!</small></strong>
|
<strong><small>Nostr support coming soon!</small></strong>
|
||||||
</p>
|
</p>
|
||||||
|
|
@ -1189,6 +1193,7 @@
|
||||||
},
|
},
|
||||||
keys: null,
|
keys: null,
|
||||||
diagonAlley: false,
|
diagonAlley: false,
|
||||||
|
diagonalley: false,
|
||||||
products: [],
|
products: [],
|
||||||
orders: [],
|
orders: [],
|
||||||
stalls: [],
|
stalls: [],
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<q-separator></q-separator>
|
<q-separator></q-separator>
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-expansion-item group="extras" icon="vpn_key" label="Keys"
|
<q-expansion-item v-if="diagonalley" group="extras" icon="vpn_key" label="Keys"
|
||||||
><p>
|
><p>
|
||||||
Bellow are the keys needed to contact the merchant. They are
|
Bellow are the keys needed to contact the merchant. They are
|
||||||
stored in the browser!
|
stored in the browser!
|
||||||
|
|
@ -197,6 +197,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- RESTORE KEYS DIALOG -->
|
<!-- RESTORE KEYS DIALOG -->
|
||||||
<q-dialog
|
<q-dialog
|
||||||
|
v-if="diagonalley"
|
||||||
v-model="keysDialog.show"
|
v-model="keysDialog.show"
|
||||||
position="top"
|
position="top"
|
||||||
@hide="clearRestoreKeyDialog"
|
@hide="clearRestoreKeyDialog"
|
||||||
|
|
@ -258,6 +259,7 @@
|
||||||
messages: {},
|
messages: {},
|
||||||
stall: null,
|
stall: null,
|
||||||
selectedOrder: null,
|
selectedOrder: null,
|
||||||
|
diagonalley: false,
|
||||||
products: [],
|
products: [],
|
||||||
orders: [],
|
orders: [],
|
||||||
user: {
|
user: {
|
||||||
|
|
|
||||||
|
|
@ -163,6 +163,7 @@
|
||||||
label="Name *optional"
|
label="Name *optional"
|
||||||
></q-input>
|
></q-input>
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="diagonalley"
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
v-model.trim="checkoutDialog.data.pubkey"
|
v-model.trim="checkoutDialog.data.pubkey"
|
||||||
|
|
@ -279,6 +280,7 @@
|
||||||
stall: null,
|
stall: null,
|
||||||
products: [],
|
products: [],
|
||||||
searchText: null,
|
searchText: null,
|
||||||
|
diagonalley:false,
|
||||||
cart: {
|
cart: {
|
||||||
total: 0,
|
total: 0,
|
||||||
size: 0,
|
size: 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue