Missing required change event for parent form to trigger various processes such as showing save button

This commit is contained in:
2020-03-26 22:29:31 +00:00
parent 5c4d762bc0
commit 091e6329dc

View File

@@ -149,7 +149,10 @@ export default {
return;
}
if (e.id != null) {
//this is required for the control to update
this.$emit("input", e.id);
//this is required for the parent form to trigger the onChange handler
this.$emit("change", e.id);
}
this.lastSelection = e;
},