diff --git a/src/pages/nft/class/_classId/_nftId.vue b/src/pages/nft/class/_classId/_nftId.vue
index ac64c00f7..f8e1ada05 100644
--- a/src/pages/nft/class/_classId/_nftId.vue
+++ b/src/pages/nft/class/_classId/_nftId.vue
@@ -166,7 +166,7 @@
:avatar-size="40"
:is-avatar-outlined="isCreatorCivicLiker"
:iscn-owner="iscnOwner"
- :iscn-work-author="iscnWorkAuthor"
+ :iscn-work-author-name="iscnWorkAuthorName"
:iscn-url="iscnURL"
:display-name="creatorDisplayNameFull"
:class-id="classId"
@@ -422,8 +422,8 @@ export default {
head() {
let title =
this.nftName || this.NFTName || this.$t('nft_details_page_title');
- if (this.iscnWorkAuthor) {
- title += ` - ${this.iscnWorkAuthor}`;
+ if (this.iscnWorkAuthorName) {
+ title += ` - ${this.iscnWorkAuthorName}`;
}
if (this.nftIsNFTBook) {
title += ` - ${this.$t('nft_details_page_title_book')}`;
diff --git a/src/pages/nft/class/_classId/index.vue b/src/pages/nft/class/_classId/index.vue
index 4787bfee0..5bf1cb2e5 100644
--- a/src/pages/nft/class/_classId/index.vue
+++ b/src/pages/nft/class/_classId/index.vue
@@ -266,7 +266,7 @@
:is-avatar-outlined="isCreatorCivicLiker"
:is-nft-book="nftIsNFTBook"
:iscn-owner="iscnOwner"
- :iscn-work-author="iscnWorkAuthor"
+ :iscn-work-author-name="iscnWorkAuthorName"
:iscn-url="iscnURL"
:display-name="creatorDisplayNameFull"
:class-id="classId"
@@ -540,8 +540,8 @@ export default {
},
head() {
let title = this.NFTName || this.$t('nft_details_page_title');
- if (this.iscnWorkAuthor) {
- title += ` - ${this.iscnWorkAuthor}`;
+ if (this.iscnWorkAuthorName) {
+ title += ` - ${this.iscnWorkAuthorName}`;
}
if (this.nftIsNFTBook) {
title += ` - ${this.$t('nft_details_page_title_book')}`;
@@ -813,8 +813,8 @@ export default {
let titleWithEdition =
this.NFTName || this.$t('nft_details_page_title');
titleWithEdition += ` - ${e.name}`;
- if (this.iscnWorkAuthor) {
- titleWithEdition += ` - ${this.iscnWorkAuthor}`;
+ if (this.iscnWorkAuthorName) {
+ titleWithEdition += ` - ${this.iscnWorkAuthorName}`;
}
titleWithEdition += ` - ${this.$t('nft_details_page_title_book')}`;
meta.find(m => m.hid === 'og:title').content = titleWithEdition;
@@ -826,11 +826,11 @@ export default {
content: this.iscnData?.contentMetadata?.isbn,
});
}
- if (this.iscnWorkAuthor) {
+ if (this.iscnWorkAuthorName) {
meta.push({
hid: 'product:custom_label_1',
property: 'product:custom_label_1',
- content: this.iscnWorkAuthor,
+ content: this.iscnWorkAuthorName,
});
}
if (this.iscnData?.contentMetadata?.inLanguage) {
diff --git a/src/pages/nft/gift/index.vue b/src/pages/nft/gift/index.vue
index f79363fb8..cd1dd5086 100644
--- a/src/pages/nft/gift/index.vue
+++ b/src/pages/nft/gift/index.vue
@@ -9,13 +9,13 @@