From b54fc90d16fc030857a543d069fb7b2cb57028d1 Mon Sep 17 00:00:00 2001 From: kpilard Date: Sat, 19 Nov 2016 03:42:58 +0100 Subject: [PATCH] use the internal value of md_input to set the value of the container --- src/components/mdInputContainer/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/mdInputContainer/common.js b/src/components/mdInputContainer/common.js index f66471b..c04f259 100644 --- a/src/components/mdInputContainer/common.js +++ b/src/components/mdInputContainer/common.js @@ -29,7 +29,7 @@ export default { this.parentContainer.counterLength = this.maxlength; }, setParentValue() { - this.parentContainer.setValue(this.$el.value); + this.parentContainer.setValue(this.value); }, setParentDisabled() { this.parentContainer.isDisabled = this.disabled;