mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 19:49:27 +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/parser": "7.7.1",
|
||||
"conventional-changelog-cli": "5.0.0",
|
||||
"electron": "33.0.2",
|
||||
"electron": "33.1.0",
|
||||
"electron-builder": "25.1.8",
|
||||
"electron-debug": "4.1.0",
|
||||
"electron-installer-dmg": "5.0.1",
|
||||
|
@ -11818,9 +11818,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/electron": {
|
||||
"version": "33.0.2",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-33.0.2.tgz",
|
||||
"integrity": "sha512-C2WksfP0COsMHbYXSJG68j6S3TjuGDrw/YT42B526yXalIlNQZ2GeAYKryg6AEMkIp3p8TUfDRD0+HyiyCt/nw==",
|
||||
"version": "33.1.0",
|
||||
"resolved": "https://registry.npmjs.org/electron/-/electron-33.1.0.tgz",
|
||||
"integrity": "sha512-7KiY6MtRo1fVFLPGyHS7Inh8yZfrbUTy43nNwUgMD2CBk729BgSwOC2WhmcptNJVlzHJpVxSWkiVi2hp9mH/bw==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
"@typescript-eslint/eslint-plugin": "7.7.1",
|
||||
"@typescript-eslint/parser": "7.7.1",
|
||||
"conventional-changelog-cli": "5.0.0",
|
||||
"electron": "33.0.2",
|
||||
"electron": "33.1.0",
|
||||
"electron-builder": "25.1.8",
|
||||
"electron-debug": "4.1.0",
|
||||
"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) {
|
||||
this.destroyTables();
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
@media (width >= 768px) and (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
|
@ -27,7 +27,7 @@
|
|||
|
||||
.bi {
|
||||
vertical-align: -.125em;
|
||||
fill: currentColor;
|
||||
fill: currentcolor;
|
||||
}
|
||||
|
||||
.nav-scroller {
|
||||
|
|
|
@ -125,7 +125,7 @@ export class NavbarComponent implements AfterViewInit, OnDestroy {
|
|||
|
||||
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'
|
||||
}));
|
||||
|
||||
|
|
|
@ -11,8 +11,7 @@ main {
|
|||
height: 100vh;
|
||||
height: -webkit-fill-available;
|
||||
max-height: 100vh;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
overflow: auto scroll;
|
||||
}
|
||||
|
||||
.dropdown-toggle { outline: 0; }
|
||||
|
|
|
@ -24,10 +24,11 @@ $primary: #ff5733;
|
|||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) {
|
||||
@media (width >= 768px) and (min-width: 768px) {
|
||||
.sidebar {
|
||||
position: fixed !important;
|
||||
}
|
||||
|
||||
.sidebar .offcanvas-lg {
|
||||
position: sticky;
|
||||
top: 48px;
|
||||
|
|
Loading…
Reference in a new issue