Merge branch 'release/5.4.1' into gray
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -28,7 +28,7 @@ const formatPromotionTitle = (promo) => { | @@ -28,7 +28,7 @@ const formatPromotionTitle = (promo) => { | ||
28 | let match = regPromoTitle.exec(promo.promotion_title); | 28 | let match = regPromoTitle.exec(promo.promotion_title); |
29 | let promotionTitle = match !== null && match.length > 1 ? match[1] : promo.promotion_title; | 29 | let promotionTitle = match !== null && match.length > 1 ? match[1] : promo.promotion_title; |
30 | 30 | ||
31 | - promotionTitle.replace('¥', '¥'); | 31 | + promotionTitle = promotionTitle.replace('¥', '¥'); |
32 | return `${title}【${promotionTitle}】`; | 32 | return `${title}【${promotionTitle}】`; |
33 | }; | 33 | }; |
34 | const formatPromotionOpt = (promo) => { | 34 | const formatPromotionOpt = (promo) => { |
-
Please register or login to post a comment