CSR-1742: change for consistency
This commit is contained in:
parent
a3d4ffb057
commit
310e77383a
1 changed files with 2 additions and 2 deletions
|
|
@ -175,7 +175,7 @@ import { getPromoCodeWithoutBundleIdentifier } from "@/helpers/promotions-helper
|
|||
import { partTypeStrings } from "@/constants/part-type-strings";
|
||||
import { cartItemCategories } from "@/constants/cart-item-categories";
|
||||
import { cartItemTypes } from "@/constants/cart-item-types";
|
||||
import { coverageStatus, coverageStatusValue } from "@/constants/coverage-status";
|
||||
import { coverageStatus } from "@/constants/coverage-status";
|
||||
|
||||
export default {
|
||||
name: "cart",
|
||||
|
|
@ -306,7 +306,7 @@ export default {
|
|||
return this.insuranceCoverageStatus === coverageStatus.VERIFIED;
|
||||
},
|
||||
currentDeductible() {
|
||||
if (this.insuranceCoverageStatus === coverageStatusValue(2))
|
||||
if (this.insuranceCoverageStatus === coverageStatus.VERIFIED)
|
||||
return this.currentDeductibleFromStore;
|
||||
return null;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue