From c0df2622472fc152d969a2cef40741ef27944c6a Mon Sep 17 00:00:00 2001 From: Douglas Paz Date: Thu, 26 Jul 2018 11:08:01 -0300 Subject: [PATCH 1/2] Fix #141 --- src/components/inputs/IntentInput.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/inputs/IntentInput.vue b/src/components/inputs/IntentInput.vue index 2f30c56c8..5110839b7 100644 --- a/src/components/inputs/IntentInput.vue +++ b/src/components/inputs/IntentInput.vue @@ -23,6 +23,9 @@ export default { }, }, watch: { + value(value) { + this.currentValue = value; + }, currentValue(value) { this.$emit('input', value); }, From b4fb219c3ecd1b327ec9e95316c027f5c7587dee Mon Sep 17 00:00:00 2001 From: Douglas Paz Date: Thu, 26 Jul 2018 15:49:53 -0300 Subject: [PATCH 2/2] v1.9.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e1100289d..17fbb1641 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bothub-webapp", - "version": "1.9.4", + "version": "1.9.5", "description": "Bothub web application", "author": "Ilhasoft ", "private": true,