Missing required change event for parent form to trigger various processes such as showing save button
This commit is contained in:
@@ -149,7 +149,10 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (e.id != null) {
|
if (e.id != null) {
|
||||||
|
//this is required for the control to update
|
||||||
this.$emit("input", e.id);
|
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;
|
this.lastSelection = e;
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user