From 4472d84480f795f47392162201bf569efd944bd3 Mon Sep 17 00:00:00 2001 From: _jiga Date: Sun, 6 Oct 2024 12:20:17 -0700 Subject: [PATCH 1/3] fix #374 Issue 1 : Fallback Stratum Password --- .../axe-os/src/app/components/edit/edit.component.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main/http_server/axe-os/src/app/components/edit/edit.component.ts b/main/http_server/axe-os/src/app/components/edit/edit.component.ts index f5f416bd..398f64a4 100644 --- a/main/http_server/axe-os/src/app/components/edit/edit.component.ts +++ b/main/http_server/axe-os/src/app/components/edit/edit.component.ts @@ -232,4 +232,9 @@ export class EditComponent implements OnInit { this.showWifiPassword = !this.showWifiPassword; } + showFallbackStratumPassword: boolean = false; + toggleFallbackStratumPasswordVisibility() { + this.showFallbackStratumPassword = !this.showFallbackStratumPassword; + } + } From 9dfe53174d7feef37efb31cc0af20692a28a49dd Mon Sep 17 00:00:00 2001 From: _jiga Date: Sun, 6 Oct 2024 12:22:07 -0700 Subject: [PATCH 2/3] fix #374 Issue 1 : Fallback Stratum Password --- .../axe-os/src/app/components/edit/edit.component.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/main/http_server/axe-os/src/app/components/edit/edit.component.html b/main/http_server/axe-os/src/app/components/edit/edit.component.html index faa1ac35..e5ceca66 100644 --- a/main/http_server/axe-os/src/app/components/edit/edit.component.html +++ b/main/http_server/axe-os/src/app/components/edit/edit.component.html @@ -81,8 +81,13 @@
-
- +
+ +
From 22dc85104cb351f2ba13c681ef627ef7febcc911 Mon Sep 17 00:00:00 2001 From: jiga Date: Tue, 8 Oct 2024 16:13:13 -0700 Subject: [PATCH 3/3] fix #388 : Refactor restart button into a list item and update styles for proper spacing. --- .../axe-os/src/app/layout/app.menu.component.html | 4 +++- .../axe-os/src/app/layout/styles/layout/_menu.scss | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/main/http_server/axe-os/src/app/layout/app.menu.component.html b/main/http_server/axe-os/src/app/layout/app.menu.component.html index cecd7137..69858eb9 100644 --- a/main/http_server/axe-os/src/app/layout/app.menu.component.html +++ b/main/http_server/axe-os/src/app/layout/app.menu.component.html @@ -5,6 +5,8 @@ - +
  • + +
  • \ No newline at end of file diff --git a/main/http_server/axe-os/src/app/layout/styles/layout/_menu.scss b/main/http_server/axe-os/src/app/layout/styles/layout/_menu.scss index 3b957ecd..a5479624 100644 --- a/main/http_server/axe-os/src/app/layout/styles/layout/_menu.scss +++ b/main/http_server/axe-os/src/app/layout/styles/layout/_menu.scss @@ -135,6 +135,10 @@ } #restart { - padding: 2rem 1rem; - display: block; + display: inline-block; +} + +#restart-container { + margin: 2rem 1rem; + display: flex; } \ No newline at end of file