From 41fa6835858a8e9190aa00e365bcdf6cda049304 Mon Sep 17 00:00:00 2001 From: William Chong Date: Fri, 27 Sep 2024 02:16:01 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20Fix=20undefined=20.trim?= =?UTF-8?q?()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mixins/nft.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixins/nft.js b/src/mixins/nft.js index fd5910308..3f7d3ab35 100644 --- a/src/mixins/nft.js +++ b/src/mixins/nft.js @@ -202,7 +202,7 @@ export default { if (this.nftIsNFTBook) { return this.iscnDescription || this.NFTClassMetadata.description || ''; } - return this.NFTClassMetadata.description; + return this.NFTClassMetadata.description || ''; }, nftDescription() { const overrideKey = `nft_override_${this.classId}_description`;