CSR-572 fix display of improper alert based on correct/incorrect vin match to vehicle.
This commit is contained in:
parent
8a6790cd87
commit
a512e45d9b
1 changed files with 2 additions and 2 deletions
|
|
@ -77,7 +77,7 @@
|
|||
:manualHeadline="MatchedDifferentVehicleAlertHeader"
|
||||
:manualCopy="MatchedDifferentVehicleAlertBody"
|
||||
v-model="customAlertData"
|
||||
v-if="isCarIdDifferent && !vinNotFound"
|
||||
v-if="isCarIdDifferent && !vinNotFound && !perfectMatchNewVinAlert"
|
||||
alertClass="alert-warning"
|
||||
/>
|
||||
<alert
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
:manualHeadline="PerfectMatchNewVinAlertHeader"
|
||||
:manualCopy="PerfectMatchNewVinAlertBody"
|
||||
v-model="customAlertData"
|
||||
v-if="perfectMatchNewVinAlert && !noServiceZip && meta.valid"
|
||||
v-if="perfectMatchNewVinAlert && !noServiceZip && !vinNotFound && meta.valid"
|
||||
alertClass="alert-success"
|
||||
/>
|
||||
<funnelFooter
|
||||
|
|
|
|||
Loading…
Reference in a new issue