CSR-1813: formatting change
This commit is contained in:
parent
750b7c8620
commit
76c50c78ad
1 changed files with 4 additions and 1 deletions
|
|
@ -269,7 +269,10 @@ export default {
|
|||
if (!this.frontWipersInCart) {
|
||||
if (!this.rearWipersInCart && this.wipersModal?.rearWiperLineItems.length > 0) {
|
||||
result = wipersOfferedStrings.BOTH;
|
||||
} else if (!this.frontWipersInCart && this.wipersModal?.frontWiperLineItems.length > 0) {
|
||||
} else if (
|
||||
!this.frontWipersInCart &&
|
||||
this.wipersModal?.frontWiperLineItems.length > 0
|
||||
) {
|
||||
result = wipersOfferedStrings.FRONT;
|
||||
}
|
||||
} else if (!this.rearWipersInCart && this.wipersModal?.rearWiperLineItems.length > 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue