From a4f61efe37028e4d9c4a04f58119ee88b9e1165e Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 21 Jun 2019 20:30:40 +0000 Subject: [PATCH] --- ayanova/src/components/tag-picker.vue | 11 ++++++++++- ayanova/src/views/inventory-widget-edit.vue | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ayanova/src/components/tag-picker.vue b/ayanova/src/components/tag-picker.vue index 454072cc..08bdbd8b 100644 --- a/ayanova/src/components/tag-picker.vue +++ b/ayanova/src/components/tag-picker.vue @@ -76,7 +76,16 @@ export default { vm.$gzHandleFormError(err); }); }, - value() { + value(val) { + // var hasChanged = false; + // if (this.oldDate != null && this.date != this.oldDate) { + // hasChanged = true; + // } + // this.oldDate = this.date; + // if (hasChanged) { + this.$emit("input", val); //always in UTC + this.$emit("change", val); //always in UTC + // } // this.localValue = this.value; } }, diff --git a/ayanova/src/views/inventory-widget-edit.vue b/ayanova/src/views/inventory-widget-edit.vue index f4971fc7..259261db 100644 --- a/ayanova/src/views/inventory-widget-edit.vue +++ b/ayanova/src/views/inventory-widget-edit.vue @@ -222,7 +222,7 @@