Skip to content

Commit 590ae41

Browse files
author
Maged Hennawy
committed
Remove bad ternary operand
1 parent ee8d0a9 commit 590ae41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class TimePickerSelect extends Select {
3939
@HostBinding("class.bx--skeleton") timePickerSelectSkeleton = this.skeleton;
4040

4141
@HostBinding("class.bx--select--light") get timePickerSelectLight() {
42-
return (true ? this.theme === "light" : false);
42+
return this.theme === "light";
4343
}
4444

4545
@Output() valueChange: EventEmitter<string> = new EventEmitter();

0 commit comments

Comments
 (0)