Navigation Menu

Skip to content

Commit

Permalink
fix(input): check if there is a value when setting value
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jun 24, 2016
1 parent 149d8dc commit d0b1930
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/input/input-base.ts
Expand Up @@ -142,6 +142,7 @@ export class InputBase {

set value(val) {
this._value = val;
this.checkHasValue(val);
}

@Input()
Expand Down

0 comments on commit d0b1930

Please sign in to comment.