diff --git a/ayanova/src/components/pick-list.vue b/ayanova/src/components/pick-list.vue index 458a2aeb..18829590 100644 --- a/ayanova/src/components/pick-list.vue +++ b/ayanova/src/components/pick-list.vue @@ -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; },