Merge pull request #1783 from Safelite/feature/CSR-1977-ajc
CSR-1977: remove brackets around promo code message
This commit is contained in:
commit
f95fe54d55
1 changed files with 4 additions and 5 deletions
|
|
@ -33,10 +33,9 @@
|
||||||
:key="i"
|
:key="i"
|
||||||
class="packaged-cart-item">
|
class="packaged-cart-item">
|
||||||
<span
|
<span
|
||||||
><span v-if="cartItem.category === 'promos'"><</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'">></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 <{{ promoCode }}> 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" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue