Merge pull request #594 from Safelite/feature/richardson/SSR-1129.2

change X to * in default case
This commit is contained in:
brich1212safe 2024-03-21 11:16:11 -04:00 committed by GitHub
commit 5f47f41434
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -144,7 +144,7 @@ export default {
const lastSixChars = this.vin.substring(11, this.vin.length); const lastSixChars = this.vin.substring(11, this.vin.length);
return `!X!X!X!X!X!X!X!X!X!X!X${lastSixChars}`; return `!X!X!X!X!X!X!X!X!X!X!X${lastSixChars}`;
} }
return 'XXXXXXXXXXXXXXXXX'; return '*****************';
}, },
carIdIsValid() { carIdIsValid() {
return this.hasValidCarId(); return this.hasValidCarId();