From 94d08032d9bd517f3c8f5c69d09a91bc2c1c6bec Mon Sep 17 00:00:00 2001 From: William Chong Date: Sat, 23 Sep 2023 17:09:20 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20mint=20bound=20watcher=20n?= =?UTF-8?q?ot=20working=20and=20invalid=20app=20condition=20checking?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/MintPageContainer.vue | 2 +- pages/nft/iscn/_iscnId.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/MintPageContainer.vue b/components/MintPageContainer.vue index 1531788f..754c02f9 100644 --- a/components/MintPageContainer.vue +++ b/components/MintPageContainer.vue @@ -73,7 +73,7 @@ export default class Min5PageContainer extends Vue { get isUsingLikerLandApp() { - return this.walletType === 'likerland_app' + return this.walletType === 'liker-id' } get googleFormUrl() { diff --git a/pages/nft/iscn/_iscnId.vue b/pages/nft/iscn/_iscnId.vue index 00bdb567..7c8ff192 100644 --- a/pages/nft/iscn/_iscnId.vue +++ b/pages/nft/iscn/_iscnId.vue @@ -514,7 +514,7 @@ export default class NFTTestMintPage extends Vue { } } - @Watch('maxMintAmount') + @Watch('maxMintAmount', { immediate: true }) onMaxMintAmount(max: number) { if (this.mintAmount > max) { this.mintAmount = max