From bc9ece0d626972b44de3ab5d8b6351f3b5c402e7 Mon Sep 17 00:00:00 2001 From: Kory Prince Date: Mon, 2 Jan 2017 07:30:59 -0600 Subject: [PATCH] fix md-input-container not reseting when model is null (#281) fix #277 --- src/components/mdInputContainer/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/mdInputContainer/common.js b/src/components/mdInputContainer/common.js index 464c615..d14ef49 100644 --- a/src/components/mdInputContainer/common.js +++ b/src/components/mdInputContainer/common.js @@ -8,6 +8,7 @@ export default { }, watch: { value(value) { + this.$el.value = value; this.setParentValue(value); }, disabled() {