mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-01-18 08:44:43 +00:00
Upgrade electron 33.0.2 -> 33.1.0, code quality fixes
This commit is contained in:
parent
920a9cfa34
commit
aa0c75e480
7 changed files with 12 additions and 12 deletions
8
package-lock.json
generated
8
package-lock.json
generated
|
@ -57,7 +57,7 @@
|
||||||
"@typescript-eslint/eslint-plugin": "7.7.1",
|
"@typescript-eslint/eslint-plugin": "7.7.1",
|
||||||
"@typescript-eslint/parser": "7.7.1",
|
"@typescript-eslint/parser": "7.7.1",
|
||||||
"conventional-changelog-cli": "5.0.0",
|
"conventional-changelog-cli": "5.0.0",
|
||||||
"electron": "33.0.2",
|
"electron": "33.1.0",
|
||||||
"electron-builder": "25.1.8",
|
"electron-builder": "25.1.8",
|
||||||
"electron-debug": "4.1.0",
|
"electron-debug": "4.1.0",
|
||||||
"electron-installer-dmg": "5.0.1",
|
"electron-installer-dmg": "5.0.1",
|
||||||
|
@ -11818,9 +11818,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/electron": {
|
"node_modules/electron": {
|
||||||
"version": "33.0.2",
|
"version": "33.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/electron/-/electron-33.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/electron/-/electron-33.1.0.tgz",
|
||||||
"integrity": "sha512-C2WksfP0COsMHbYXSJG68j6S3TjuGDrw/YT42B526yXalIlNQZ2GeAYKryg6AEMkIp3p8TUfDRD0+HyiyCt/nw==",
|
"integrity": "sha512-7KiY6MtRo1fVFLPGyHS7Inh8yZfrbUTy43nNwUgMD2CBk729BgSwOC2WhmcptNJVlzHJpVxSWkiVi2hp9mH/bw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
"@typescript-eslint/eslint-plugin": "7.7.1",
|
"@typescript-eslint/eslint-plugin": "7.7.1",
|
||||||
"@typescript-eslint/parser": "7.7.1",
|
"@typescript-eslint/parser": "7.7.1",
|
||||||
"conventional-changelog-cli": "5.0.0",
|
"conventional-changelog-cli": "5.0.0",
|
||||||
"electron": "33.0.2",
|
"electron": "33.1.0",
|
||||||
"electron-builder": "25.1.8",
|
"electron-builder": "25.1.8",
|
||||||
"electron-debug": "4.1.0",
|
"electron-debug": "4.1.0",
|
||||||
"electron-installer-dmg": "5.0.1",
|
"electron-installer-dmg": "5.0.1",
|
||||||
|
|
|
@ -221,7 +221,7 @@ export class DetailComponent extends BasePageComponent implements AfterViewInit
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const daemonStatusSub = this.daemonService.onDaemonStatusChanged.subscribe((running: boolean) => {
|
const daemonStatusSub: Subscription = this.daemonService.onDaemonStatusChanged.subscribe((running: boolean) => {
|
||||||
if (!running) {
|
if (!running) {
|
||||||
this.destroyTables();
|
this.destroyTables();
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (width >= 768px) and (min-width: 768px) {
|
||||||
.bd-placeholder-img-lg {
|
.bd-placeholder-img-lg {
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
.bi {
|
.bi {
|
||||||
vertical-align: -.125em;
|
vertical-align: -.125em;
|
||||||
fill: currentColor;
|
fill: currentcolor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-scroller {
|
.nav-scroller {
|
||||||
|
|
|
@ -125,7 +125,7 @@ export class NavbarComponent implements AfterViewInit, OnDestroy {
|
||||||
|
|
||||||
queryResult.forEach((el) => tooltipTriggerList.push(el));
|
queryResult.forEach((el) => tooltipTriggerList.push(el));
|
||||||
|
|
||||||
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl, {
|
const tooltipList: bootstrap.Tooltip[] = tooltipTriggerList.map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl, {
|
||||||
placement: 'bottom'
|
placement: 'bottom'
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,7 @@ main {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
height: -webkit-fill-available;
|
height: -webkit-fill-available;
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
overflow-x: auto;
|
overflow: auto scroll;
|
||||||
overflow-y: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-toggle { outline: 0; }
|
.dropdown-toggle { outline: 0; }
|
||||||
|
|
|
@ -24,10 +24,11 @@ $primary: #ff5733;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (width >= 768px) and (min-width: 768px) {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar .offcanvas-lg {
|
.sidebar .offcanvas-lg {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 48px;
|
top: 48px;
|
||||||
|
|
Loading…
Reference in a new issue