-
+
@@ -150,7 +150,7 @@
/>
@@ -359,9 +359,9 @@
m.hid === 'og:title').content = titleWithEdition;
}
- if (this.iscnData?.contentMetadata?.isbn) {
+ if (this.contentMetadata.isbn) {
meta.push({
hid: 'product:isbn',
property: 'product:isbn',
- content: this.iscnData?.contentMetadata?.isbn,
+ content: this.contentMetadata.isbn,
});
}
if (this.classAuthorName) {
@@ -920,11 +920,11 @@ export default {
content: this.classAuthorName,
});
}
- if (this.iscnData?.contentMetadata?.inLanguage) {
+ if (this.contentMetadata.inLanguage) {
meta.push({
hid: 'product:custom_label_2',
property: 'product:custom_label_2',
- content: this.iscnData?.contentMetadata?.inLanguage,
+ content: this.contentMetadata.inLanguage,
});
}
}
@@ -1218,7 +1218,7 @@ export default {
logPurchaseFlowEvent(this, 'view_item', {
items: [
{
- name: this.NFTName,
+ name: this.nftName,
classId: this.classId,
priceIndex: this.editionPriceIndex,
price: this.NFTPriceUSD,
@@ -1271,7 +1271,7 @@ export default {
return {
items: [
{
- name: this.NFTName,
+ name: this.nftName,
price: customPriceInDecimal || edition.price,
classId: this.classId,
priceIndex: edition.index,
@@ -1691,7 +1691,7 @@ export default {
logPurchaseFlowEvent(this, 'view_item', {
items: [
{
- name: this.NFTName,
+ name: this.nftName,
classId: this.classId,
priceIndex: this.editionPriceIndex,
price: this.NFTPriceUSD,
@@ -1707,8 +1707,8 @@ export default {
},
handleCopyURL() {
this.shareURLPath({
- title: this.NFTName,
- text: this.NFTDescription,
+ title: this.nftName,
+ text: this.nftDescription,
path: this.nftClassDetailsPageURL,
alertMessage: this.$t('tooltip_share_done'),
});
diff --git a/src/pages/nft/fiat/stripe.vue b/src/pages/nft/fiat/stripe.vue
index 4f3e62e06..388fde281 100644
--- a/src/pages/nft/fiat/stripe.vue
+++ b/src/pages/nft/fiat/stripe.vue
@@ -127,7 +127,7 @@ export default {
txHash: this.result.transactionHash,
items: [
{
- name: this.NFTName,
+ name: this.nftName,
price: this.result.fiatPrice,
classId: this.classId,
priceIndex: this.editionPriceIndex,