Emit lookup error when no VINs are identified in image.
This commit is contained in:
parent
ca7c10a65a
commit
5ef2c75016
1 changed files with 8 additions and 4 deletions
|
|
@ -133,12 +133,16 @@ export default {
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
await this.dispatchStoreAction(storeActions.LOOKUP_VIN_BY_IMAGE, e.target.files[0])
|
await this.dispatchStoreAction(storeActions.LOOKUP_VIN_BY_IMAGE, e.target.files[0])
|
||||||
.then(async (response) => {
|
.then(async (response) => {
|
||||||
this.value = response.data.length > 0 ? response.data[0] : "";
|
if (response.data.length > 0) {
|
||||||
|
this.value = response.data[0];
|
||||||
|
|
||||||
// Wait for DOM to update before firing change event to handle validation.
|
// Wait for DOM to update before firing change event to handle validation.
|
||||||
await this.$nextTick();
|
await this.$nextTick();
|
||||||
|
|
||||||
document.getElementById(this.inputId).dispatchEvent(new Event("change"));
|
document.getElementById(this.inputId).dispatchEvent(new Event("change"));
|
||||||
|
} else {
|
||||||
|
this.$emit("imageLookupError");
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
this.$emit("imageLookupError");
|
this.$emit("imageLookupError");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue