diff --git a/src/components/MintSettings.vue b/src/components/MintSettings.vue index 9a90a22..2163a20 100644 --- a/src/components/MintSettings.vue +++ b/src/components/MintSettings.vue @@ -16,9 +16,9 @@ :active="mint.url == activeMintUrl" active-class="text-weight-bold text-primary" clickable - class="q-pb-xs" + class="q-pb-xs q-pl-xs" > - + + + Mint Icon + @@ -81,7 +88,7 @@ - + @@ -807,6 +814,17 @@ export default defineComponent({ this.showMintInfoData = mint; this.showMintInfoDialog = true; }, + getMintIconUrl: function (mint) { + if (mint.info) { + if (mint.info.icon_url) { + return mint.info.icon_url; + } else { + return undefined; + } + } else { + return undefined; + } + }, }, created: function () {}, });