From 548f1124798ba7f722b8482a112b621251832d9c Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 16 Jun 2022 08:29:09 -0400 Subject: [PATCH] Fixed bug where the Perfect Match New Vin Alert wasn't appearing unless you clicked on masked Vin --- src/layouts/vin-lookup/vin-lookup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 29aeda5e4..f7e7ab56e 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -206,7 +206,7 @@ export default { }, computed: { perfectMatchNewVinAlert() { - const isVinPerfectMatch = this.vinPopulatedOnPageLoad && this.vin === this.getVinFromStore(); + const isVinPerfectMatch = this.vinPopulatedOnPageLoad && this.initialVin === this.getVinFromStore(); this.updateIsCarIdDifferent(isVinPerfectMatch); return isVinPerfectMatch; },