Skip to content

Commit

Permalink
Fix lint test
Browse files Browse the repository at this point in the history
  • Loading branch information
everoddandeven committed Dec 28, 2024
1 parent bc882b0 commit 829fc9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/pages/base-page/base-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ export abstract class BasePageComponent implements AfterContentInit, OnDestroy {

protected subscriptions: Subscription[] = [];

private readonly mResizeHandler: (event: Event) => void = (event: Event) => setTimeout(() => this.updateTableContentHeight(), 100);
private readonly mResizeHandler: (event: Event) => void = (event: Event) => setTimeout(() => {
console.debug(event);
this.updateTableContentHeight();
}, 100);

constructor(private navbarService: NavbarService) {
this.subscriptions.push(this.navbarService.onDaemonStatusChanged.subscribe((running) => {
Expand Down

0 comments on commit 829fc9d

Please sign in to comment.