mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-04-02 20:29:08 +00:00
Fix settings overflow y
This commit is contained in:
parent
968be73ea1
commit
56ad4c2653
2 changed files with 12 additions and 12 deletions
src/app/pages/settings
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="!loading" class="tab-content tab-grow" id="pills-tabContent">
|
||||
<div [hidden]="loading" class="tab-content tab-grow" id="pills-tabContent">
|
||||
<div *ngIf="savingChangesError !== ''" class="alert alert-danger d-flex align-items-center justify-content-center text-center" role="alert">
|
||||
<h4><i class="bi bi-exclamation-triangle m-2"></i></h4>
|
||||
<div>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { AfterViewInit, Component, NgZone } from '@angular/core';
|
||||
import { Component, NgZone } from '@angular/core';
|
||||
import { NavbarLink } from '../../shared/components/navbar/navbar.model';
|
||||
import { DaemonSettings, DefaultPrivnetNode2Settings, I2pDaemonSettings, PrivnetDaemonSettings, TorDaemonSettings } from '../../../common';
|
||||
import { DaemonService, I2pDaemonService, ElectronService, TorDaemonService } from '../../core/services';
|
||||
|
@ -12,7 +12,7 @@ import { NavbarService } from '../../shared/components';
|
|||
styleUrl: './settings.component.scss',
|
||||
standalone: false
|
||||
})
|
||||
export class SettingsComponent extends BasePageComponent implements AfterViewInit {
|
||||
export class SettingsComponent extends BasePageComponent {
|
||||
// #region Properties
|
||||
|
||||
public readonly navbarLinks: NavbarLink[];
|
||||
|
@ -412,12 +412,6 @@ export class SettingsComponent extends BasePageComponent implements AfterViewIni
|
|||
this._currentI2pdSettings = this.originalI2pdSettings.clone();
|
||||
this.originalTorSettings = this.torService.settings;
|
||||
this._currentTorSettings = this.originalTorSettings.clone();
|
||||
|
||||
this.load().then(() => {
|
||||
console.debug("Settings loaded");
|
||||
}).catch((error: any) => {
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
|
||||
public onTorTxProxyChange(): void {
|
||||
|
@ -581,8 +575,14 @@ export class SettingsComponent extends BasePageComponent implements AfterViewIni
|
|||
}
|
||||
}
|
||||
|
||||
public ngAfterViewInit(): void {
|
||||
this.loadTables();
|
||||
public override ngAfterContentInit(): void {
|
||||
super.ngAfterContentInit();
|
||||
this.load().then(() => {
|
||||
console.debug("Settings loaded");
|
||||
this.loadTables();
|
||||
}).catch((error: any) => {
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
|
||||
public refreshSyncMode(): void {
|
||||
|
@ -671,7 +671,7 @@ export class SettingsComponent extends BasePageComponent implements AfterViewIni
|
|||
this.refreshTorTxProxy();
|
||||
this.refreshI2pAnonymousInbound();
|
||||
this.refreshI2pTxProxy();
|
||||
this.updateTablesContentHeight();
|
||||
setTimeout(() => this.updateTablesContentHeight(), 100);
|
||||
}
|
||||
|
||||
private loadTables(): void {
|
||||
|
|
Loading…
Reference in a new issue