Skip to content

Commit

Permalink
🔀 Merge #2015 into deploy/rinkeby
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraHuang22 committed Jan 16, 2025
2 parents 55c50ca + 14f8c66 commit 323fe0d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 14 deletions.
5 changes: 0 additions & 5 deletions src/components/NFTBook/ItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,6 @@
:title="$t('nft_details_page_label_author_description')"
:content="iscnWorkAuthorDescription"
/>
<NFTBookContentBlock
v-if="nftBookBlurb"
:title="$t('nft_details_page_label_author_description')"
:content="nftBookBlurb"
/>
<NFTBookContentBlock
v-if="nftTableContent"
:title="$t('nft_details_page_label_table_content')"
Expand Down
1 change: 0 additions & 1 deletion src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,6 @@
"nft_details_page_label_access_methods": "Access Method",
"nft_details_page_label_ar_view_in_mobile": "Experience your NFT live",
"nft_details_page_label_author_description": "Author Description",
"nft_details_page_label_blurb": "Blurb",
"nft_details_page_label_class_page": "View all events from this content",
"nft_details_page_label_content_types": "FIle Types",
"nft_details_page_label_item_loading": "Loading...",
Expand Down
1 change: 0 additions & 1 deletion src/locales/zh-Hant.json
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,6 @@
"nft_details_page_label_access_methods": "閱讀方式",
"nft_details_page_label_ar_view_in_mobile": "將你的 NFT 帶到現實",
"nft_details_page_label_author_description": "作者簡介",
"nft_details_page_label_blurb": "推薦語",
"nft_details_page_label_class_page": "檢視此系列的其他事件",
"nft_details_page_label_content_types": "檔案類型",
"nft_details_page_label_item_loading": "載入中...",
Expand Down
3 changes: 0 additions & 3 deletions src/mixins/nft.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,9 +538,6 @@ export default {
nftTableContent() {
return this.getNFTBookStoreInfoByClassId(this.classId)?.tableOfContents;
},
nftBookBlurb() {
return this.getNFTBookStoreInfoByClassId(this.classId)?.blurb;
},
userCollectedNFTList() {
const collectedList = this.collectorMap[this.getAddress];
return collectedList ? Object.values(collectedList) : [];
Expand Down
4 changes: 0 additions & 4 deletions src/store/modules/nft.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ const mutations = {
hideDownload,
enableCustomMessagePage,
tableOfContents,
blurb,
}
) {
Vue.set(state.nftBookStoreInfoByClassIdMap, classId, {
Expand All @@ -125,7 +124,6 @@ const mutations = {
hideDownload,
enableCustomMessagePage,
tableOfContents,
blurb,
});
},
[TYPES.NFT_SET_NFT_COLLECTION_INFO](state, { collectionId, data }) {
Expand Down Expand Up @@ -533,7 +531,6 @@ const actions = {
enableSignatureImage: bookstoreInfo.enableSignatureImage,
isHidden: bookstoreInfo.isHidden,
tableOfContents: bookstoreInfo.tableOfContents,
blurb: bookstoreInfo.blurb,
};
commit(TYPES.NFT_BOOK_STORE_INFO_BY_CLASS_ID_MAP_SET, payload);
}
Expand Down Expand Up @@ -886,7 +883,6 @@ const actions = {
enableSignatureImage: data.enableSignatureImage,
isHidden: data.isHidden,
tableOfContents: data.tableOfContents,
blurb: data.blurb,
};
commit(TYPES.NFT_BOOK_STORE_INFO_BY_CLASS_ID_MAP_SET, payload);
return payload;
Expand Down

0 comments on commit 323fe0d

Please sign in to comment.