Skip to content

Commit f6e56a0

Browse files
author
Maged Hennawy
committed
Fix review request
1 parent 590ae41 commit f6e56a0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { Component, Input, ChangeDetectorRef, Output, EventEmitter, HostBinding } from "@angular/core";
1+
import {
2+
Component,
3+
Input,
4+
Output,
5+
EventEmitter,
6+
HostBinding
7+
} from "@angular/core";
28
import { Select } from "../select/select.component";
39

410
@Component({
@@ -26,10 +32,6 @@ export class TimePickerSelect extends Select {
2632
* Set to true for a loading select.
2733
*/
2834
@Input() skeleton = false;
29-
/**
30-
* Set to `true` for an invalid select component.
31-
*/
32-
@Input() invalid = false;
3335

3436
/**
3537
* `light` or `dark` select theme
@@ -46,6 +48,5 @@ export class TimePickerSelect extends Select {
4648

4749
onChange(event) {
4850
this.valueChange.emit(event.target.value);
49-
console.log(this.theme);
5051
}
5152
}

0 commit comments

Comments
 (0)