diff --git a/ionic/components/input/input-base.ts b/ionic/components/input/input-base.ts index 86107b82b6..7130a07def 100644 --- a/ionic/components/input/input-base.ts +++ b/ionic/components/input/input-base.ts @@ -181,8 +181,9 @@ export class InputBase { * the checked value. * https://github.com/angular/angular/blob/master/modules/angular2/src/forms/directives/shared.ts#L34 */ - writeValue(value) { - this._value = value; + writeValue(val) { + this._value = val; + this.checkHasValue(val); } /**