Skip to content

Commit

Permalink
chore: fix lint errors (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
chintankavathia authored Jul 3, 2024
1 parent f9e10a6 commit 4cafedd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
EventEmitter,
HostBinding,
Input,
OnChanges,
OnDestroy,
Output,
SimpleChanges,
Expand Down Expand Up @@ -76,7 +77,7 @@ import { ScrollbarHelper } from '../../services/scrollbar-helper.service';
},
changeDetection: ChangeDetectionStrategy.OnPush
})
export class DataTableHeaderComponent implements OnDestroy {
export class DataTableHeaderComponent implements OnDestroy, OnChanges {
@Input() sortAscendingIcon: any;
@Input() sortDescendingIcon: any;
@Input() sortUnsetIcon: any;
Expand Down

0 comments on commit 4cafedd

Please sign in to comment.