Skip to content

Commit

Permalink
πŸ› Show first memo in claim page for memo array
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Oct 3, 2024
1 parent 2e90540 commit bfeaafd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/nft/claim/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ import {
getNFTClassCollectionType,
nftClassCollectionType,
parseNFTMetadataURL,
parseAutoMemo,
} from '~/util/nft';
import { ellipsis } from '~/util/ui';
import { NFT_BOOK_PLATFORM_LIKER_LAND } from '~/constant';
Expand Down Expand Up @@ -844,7 +845,7 @@ export default {
this.giftInfo = giftInfo;
this.isPhysicalOnly = isPhysicalOnly;
this.isAutoDeliver = isAutoDeliver;
this.creatorMessage = autoMemo;
this.creatorMessage = parseAutoMemo(autoMemo);
this.status = status;
this.quantity = quantity;
} catch (err) {
Expand All @@ -859,7 +860,7 @@ export default {
const { isPhysicalOnly, autoMemo, isAutoDeliver } = data;
this.isPhysicalOnly = isPhysicalOnly;
this.isAutoDeliver = isAutoDeliver;
this.creatorMessage = autoMemo;
this.creatorMessage = parseAutoMemo(autoMemo);
}
try {
Expand Down

0 comments on commit bfeaafd

Please sign in to comment.