Merge pull request #1783 from Safelite/feature/CSR-1977-ajc

CSR-1977: remove brackets around promo code message
This commit is contained in:
AdamCaouetteSafelite 2024-03-01 16:47:51 -05:00 committed by GitHub
commit f95fe54d55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,10 +33,9 @@
:key="i" :key="i"
class="packaged-cart-item"> class="packaged-cart-item">
<span <span
><span v-if="cartItem.category === 'promos'">&lt;</span ><span v-if="cartItem.category === 'promos'"></span>{{ cartItem.name
>{{ cartItem.name }}<span v-if="cartItem.category === 'promos'"></span
}}<span v-if="cartItem.category === 'promos'">&gt;</span></span ></span>
>
<textLink <textLink
v-if="allowItemRemoval" v-if="allowItemRemoval"
ref="removeLink" ref="removeLink"
@ -112,7 +111,7 @@
class="my-2 lh-1 applied-promo" class="my-2 lh-1 applied-promo"
v-for="(promoCode, i) in this.getPromoCodeList()" v-for="(promoCode, i) in this.getPromoCodeList()"
:key="i"> :key="i">
<span class="caption">Promo code &lt;{{ promoCode }}&gt; applied </span> <span class="caption">Promo code {{ promoCode }} applied </span>
</div> </div>
<contentGroupModal ref="RecycleModal" cmsWidgetName="RecycleModal"> <contentGroupModal ref="RecycleModal" cmsWidgetName="RecycleModal">
<textBlock cmsWidgetName="RecycleTextBlock" /> <textBlock cmsWidgetName="RecycleTextBlock" />