change X to * in default case

This commit is contained in:
Bill Richardson 2024-03-20 14:05:38 -04:00
parent 5a73395a0f
commit f95be2467d

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();