diff --git a/addon/components/md-input.js b/addon/components/md-input.js index fcca04e8..12ef25ce 100644 --- a/addon/components/md-input.js +++ b/addon/components/md-input.js @@ -8,6 +8,12 @@ export default MaterializeInputField.extend({ didInsertElement() { this._super(...arguments); // make sure the label moves when a value is bound. + this._setupLabel(); + }, + + didUpdateAttrs() { + this._super(...arguments); + this._setupLabel(); } });