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 @@