diff --git a/ayanova/src/components/pick-list.vue b/ayanova/src/components/pick-list.vue
index 1b37a564..c5c94253 100644
--- a/ayanova/src/components/pick-list.vue
+++ b/ayanova/src/components/pick-list.vue
@@ -2,7 +2,7 @@
@@ -218,16 +217,13 @@ export default {
data: "ay-start-form-picklist"
});
},
- test(e) {
+ selectionMade(e) {
if (e == undefined) {
+ //this will happen when clear clicked
return;
}
- console.log("value changed deciding to emit", e);
- console.log("e.id=", e.id);
if (e.id != null) {
- console.log("emitting:", e);
this.$emit("input", e.id);
- this.$emit("change", e.id);
}
},
dropdown(e) {