Skip to content

Commit a706af4

Browse files
author
Maged Hennawy
committed
Fix review comments
1 parent 81d6de5 commit a706af4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/timepicker-select/timepicker-select.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { Select } from "../select/select.component";
1414
<ng-content></ng-content>
1515
</select>
1616
<ibm-icon-chevron-down16 *ngIf="!skeleton" class="bx--select__arrow"></ibm-icon-chevron-down16>
17-
1817
`
1918
})
2019
export class TimePickerSelect extends Select {

src/timepicker/timepicker.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ import {
1717
class="bx--time-picker__input">
1818
<label *ngIf="!skeleton" [attr.for]="id" class="bx--label">{{label}}</label>
1919
<input
20-
#timePicker
2120
[value]="value"
2221
[placeholder]="placeholder"
2322
[pattern]="pattern"
2423
[attr.id]="id"
2524
[disabled]="disabled"
2625
maxlength="5"
2726
(change)="onChange($event)"
28-
type="string"
27+
type="text"
2928
class="bx--time-picker__input-field bx--text-input">
3029
</div>
3130
<ng-content></ng-content>

0 commit comments

Comments
 (0)