Fix lint test
Some checks are pending
MacOS - x64 DMG Build / build (20) (push) Waiting to run
Lint Test / build (20) (push) Waiting to run
Linux - AppImage Build / build (20) (push) Waiting to run
Linux - x86_64 RPM Build / build (20) (push) Waiting to run
Linux - x64 DEB Build / build (20) (push) Waiting to run
MacOS Build / build (20) (push) Waiting to run
Windows Build / build (20) (push) Waiting to run

This commit is contained in:
everoddandeven 2024-12-28 21:46:21 +01:00
parent bc882b0210
commit 829fc9d102

View file

@ -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) => {