diff --git a/frontend/angular.json b/frontend/angular.json
index d79b6f10c..f8cfee3bd 100644
--- a/frontend/angular.json
+++ b/frontend/angular.json
@@ -168,8 +168,6 @@
}
],
"styles": [
- "node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
- "node_modules/@taiga-ui/core/styles/taiga-ui-fonts.less",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/shared/styles/shared.scss",
@@ -305,8 +303,6 @@
}
],
"styles": [
- "node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
- "node_modules/@taiga-ui/core/styles/taiga-ui-fonts.less",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/shared/styles/shared.scss",
@@ -432,8 +428,6 @@
}
],
"styles": [
- "node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
- "node_modules/@taiga-ui/core/styles/taiga-ui-fonts.less",
"projects/shared/styles/variables.scss",
"projects/shared/styles/global.scss",
"projects/shared/styles/shared.scss",
diff --git a/frontend/projects/ui/src/app/app/menu/menu.component.ts b/frontend/projects/ui/src/app/app/menu/menu.component.ts
index e955af806..b2487ae7e 100644
--- a/frontend/projects/ui/src/app/app/menu/menu.component.ts
+++ b/frontend/projects/ui/src/app/app/menu/menu.component.ts
@@ -11,6 +11,7 @@ import {
filter,
map,
Observable,
+ pairwise,
startWith,
switchMap,
withLatestFrom,
@@ -71,12 +72,15 @@ export class MenuComponent {
withLatestFrom(this.patch.watch$('package-data')),
switchMap(([_, outer]) =>
this.patch.watch$('package-data').pipe(
- filter(
- pkgs =>
- !!Object.values(pkgs).find(
- pkg => pkg['install-progress']?.['unpack-complete'],
- ),
+ pairwise(),
+ filter(([prev, curr]) =>
+ Object.values(prev).some(
+ p =>
+ p['install-progress'] &&
+ !curr[p.manifest.id]?.['install-progress'],
+ ),
),
+ map(([_, curr]) => curr),
startWith(outer),
),
),
diff --git a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
index 8cd19742d..695254c03 100644
--- a/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
+++ b/frontend/projects/ui/src/app/pages/server-routes/server-specs/server-specs.page.html
@@ -60,7 +60,7 @@
Device Credentials
-
+
CA fingerprint