CSR-963 experiment settings compare as strings
This commit is contained in:
parent
e3f7f2adfd
commit
c09c6da283
1 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ export async function skipVinLookup() {
|
|||
return (
|
||||
store.getters.damage.isRepair ||
|
||||
isVinOptionalVehicle ||
|
||||
experimentMixin.methods.hasSettingEqualTo(experimentSettings.SUPPRESS_VIN_CAPTURE, true)
|
||||
experimentMixin.methods.hasSettingEqualTo(experimentSettings.SUPPRESS_VIN_CAPTURE, "true")
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -83,7 +83,7 @@ export async function skipVinLookupNotRepair() {
|
|||
(isVinOptionalVehicle ||
|
||||
experimentMixin.methods.hasSettingEqualTo(
|
||||
experimentSettings.SUPPRESS_VIN_CAPTURE,
|
||||
true
|
||||
"true"
|
||||
))
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue