Skip to content

Commit

Permalink
🔀 Merge #438 updates into deploy/rinkeby
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraHuang22 committed Feb 7, 2024
2 parents 2f51547 + 07e3a68 commit 716bbcc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions components/IscnEditBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
preset="secondary"
class="w-full lg:w-auto"
:text="$t('NFTPortal.button.mint.book')"
@click="clickMintNFTBook"
@click="handleClickMintNFTBook"
/>
<Button
v-if="isShowMintButton && !isNftBook"
Expand Down Expand Up @@ -77,10 +77,13 @@ export default class IscnEditBar extends Vue {
@Prop({ default: false }) readonly isShowMintButton!: boolean
@Prop({ default: false }) readonly isNftBook!: boolean
@Prop(String) readonly iscnId: string | undefined
@Prop({ default: null }) readonly mintQueries!: any | null
@Prop(String) readonly classId!: string
@Prop(String) readonly likerlandNftUrl!: string
get mintQueries() {
return this.$route.query;
}
handleClickDownload() {
this.$emit('click-download', this.iscnId)
}
Expand Down
1 change: 0 additions & 1 deletion components/IscnUploadedInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
:iscn-id="iscnId"
:is-show-mint-button="true"
:is-nft-book="type === 'Book'"
:should-show-mint-button="true"
@click-edit="handleEdit"
@click-download="handleClickDownload"
@click-mint-book="clickMintNFTBook"
Expand Down
1 change: 0 additions & 1 deletion pages/view/_iscnId/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
:iscn-id="iscnId"
:is-show-mint-button="isShowMintButton"
:is-nft-book="isNFTBook"
:mint-queries="mintQueries"
:class-id="classId"
:likerland-nft-url="likerlandNftUrl"
:should-show-mint-button="isShowMintButton"
Expand Down

0 comments on commit 716bbcc

Please sign in to comment.