Skip to content

Commit

Permalink
chore(*): fix lint error #4679
Browse files Browse the repository at this point in the history
  • Loading branch information
SAndreeva committed Jun 4, 2019
1 parent 5966ca3 commit aba067b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,8 @@ export class IgxTimePickerComponent implements
}

if (this.selectedHour === undefined) {
this.selectedHour = !this.showHoursList && this.value ? this.value.getHours().toString() : this.showHoursList ? `${this._hourItems[3]}` : '0';
this.selectedHour = !this.showHoursList && this.value ? this.value.getHours().toString() :
this.showHoursList ? `${this._hourItems[3]}` : '0';
}
if (this.selectedMinute === undefined) {
this.selectedMinute = !this.showMinutesList && this.value ? this.value.getMinutes().toString() : '0';
Expand Down

0 comments on commit aba067b

Please sign in to comment.