fix(input): check if there is a value when setting value

This commit is contained in:
Brandy Carney
2016-06-24 18:06:29 -04:00
parent 149d8dccfa
commit d0b1930b25

View File

@ -142,6 +142,7 @@ export class InputBase {
set value(val) {
this._value = val;
this.checkHasValue(val);
}
@Input()