Skip to content

Commit

Permalink
restore list
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Aug 15, 2024
1 parent 4accb9a commit 2d03f96
Showing 1 changed file with 68 additions and 74 deletions.
142 changes: 68 additions & 74 deletions src/components/MintDetailsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,98 +11,93 @@
:value="showMintInfoData.url"
:options="{ width: 340 }"
class="rounded-borders"
@click="copyText(showMintInfoData.url)"
>
</vue-qrcode>
</q-responsive>
<div class="row justify-center q-px-md">
<div
class="row justify-center"
@click="copyText(showMintInfoData.url)"
>
<div class="row justify-center">
<div class="row justify-center">
<q-chip outline class="q-pa-md q-mt-md">
<q-icon name="account_balance" size="xs" class="q-mr-xs" />
{{ showMintInfoData.url }}
</q-chip>
</div>
<div class="row justify-center q-px-md">
<q-card-section class="q-pa-sm">
<div
<q-card-section class="q-pa-sm">
<div
v-if="showMintInfoData.info.name"
class="row justify-center q-pt-sm"
>
<q-item-label
caption
v-if="showMintInfoData.info.name"
class="row justify-center q-pt-sm"
class="text-weight-bold text-white"
style="font-size: 16px"
>
<q-item-label
caption
v-if="showMintInfoData.info.name"
class="text-weight-bold text-white"
style="font-size: 16px"
>
{{ showMintInfoData.info.name }}
</q-item-label>
</div>
<div
{{ showMintInfoData.info.name }}
</q-item-label>
</div>
<div
v-if="showMintInfoData.info.description"
class="row justify-center q-pt-sm"
>
<q-item-label
caption
v-if="showMintInfoData.info.description"
class="row justify-center q-pt-sm q-px-md"
class="text-white"
style="font-size: 12px"
>
<q-item-label
caption
v-if="showMintInfoData.info.description"
class="text-white"
style="font-size: 12px"
>
{{ showMintInfoData.info.description }}
</q-item-label>
</div>
<div
{{ showMintInfoData.info.description }}
</q-item-label>
</div>
<div
v-if="showMintInfoData.info.description_long"
class="row justify-center q-pt-sm"
>
<q-item-label
caption
v-if="showMintInfoData.info.description_long"
class="row justify-center q-pt-sm"
class="text-weight-light text-white"
style="font-size: 12px"
>
<q-item-label
caption
v-if="showMintInfoData.info.description_long"
class="text-weight-light text-white"
style="font-size: 12px"
>
{{ showMintInfoData.info.description_long }}
</q-item-label>
</div>
<div
{{ showMintInfoData.info.description_long }}
</q-item-label>
</div>
<div
v-if="showMintInfoData.info.version"
class="row justify-center q-pt-sm"
>
<q-item-label
caption
v-if="showMintInfoData.info.version"
class="row justify-center q-pt-sm"
class="text-weight-light text-white"
style="font-size: 10px"
>
<q-item-label
caption
v-if="showMintInfoData.info.version"
class="text-weight-light text-white"
style="font-size: 10px"
>
Version: {{ showMintInfoData.info.version }}
</q-item-label>
</div>
<div
Version: {{ showMintInfoData.info.version }}
</q-item-label>
</div>
<div
v-if="showMintInfoData.info.nuts"
class="row justify-center q-pt-sm"
>
<q-item-label
caption
v-if="showMintInfoData.info.nuts"
class="row justify-center q-pt-sm"
class="text-weight-light text-white"
style="font-size: 10px"
>
<q-item-label
caption
v-if="showMintInfoData.info.nuts"
class="text-weight-light text-white"
style="font-size: 10px"
>
<!-- only the keys of the info.nuts object -->
Nuts: {{ Object.keys(showMintInfoData.info.nuts).join(", ") }}
</q-item-label>
</div>
</q-card-section>
</div>
<!-- only the keys of the info.nuts object -->
Nuts: {{ Object.keys(showMintInfoData.info.nuts).join(", ") }}
</q-item-label>
</div>
</q-card-section>

<q-card-section
v-if="
showMintInfoData.info.contact &&
showMintInfoData.info.contact.length > 0
"
>
<div class="justify-center">
<q-card-section>
<div
v-if="
showMintInfoData.info.contact &&
showMintInfoData.info.contact.length > 0
"
class="justify-center"
>
<div
v-for="contactInfo in showMintInfoData.info.contact"
:key="contactInfo.method"
Expand All @@ -112,7 +107,6 @@
caption
class="text-weight-light text-white"
style="font-size: 12px"
v-if="contactInfo.method && contactInfo.info"
>
<q-icon
v-if="contactIcons[contactInfo.method]"
Expand Down

0 comments on commit 2d03f96

Please sign in to comment.