mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-01-03 09:29:36 +00:00
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
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:
parent
bc882b0210
commit
829fc9d102
1 changed files with 4 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue