Skip to content

Commit

Permalink
fix missing declaration of an implemented lifecycle hook
Browse files Browse the repository at this point in the history
  • Loading branch information
uap-universe committed Dec 17, 2024
1 parent dd6cd1f commit e9815a4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
Component,
EventEmitter,
Input,
OnChanges,
OnDestroy,
Output,
QueryList,
Expand Down Expand Up @@ -31,7 +32,7 @@ import {RowClassFunction} from "../../lib/settings";
templateUrl: './tbody.component.html',
standalone: false
})
export class NgxSmartTableTbodyComponent implements AfterViewInit, OnDestroy {
export class NgxSmartTableTbodyComponent implements AfterViewInit, OnChanges, OnDestroy {

@Input() grid!: Grid;
@Input() source!: DataSource;
Expand Down

0 comments on commit e9815a4

Please sign in to comment.