From 508ed8a8e7f817a80faadadc0ec7e86802401ae8 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sat, 1 Aug 2026 11:28:51 +0200 Subject: [PATCH] feat(ui): separate scheduler controls subsection --- .../trx-frontend/trx-frontend-http/assets/web/index.html | 9 +++++++-- .../trx-frontend/trx-frontend-http/assets/web/style.css | 2 +- .../trx-frontend/trx-frontend-http/src/status.rs | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html index 05f18654..1fb05d71 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html @@ -358,9 +358,14 @@ SPDX-License-Identifier: GPL-2.0-or-later
-
Channels / Scheduler
+
Channels
+
+
+
+ Scheduler controls +
- +
Signal
diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css index cca883ee..f5e18207 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css @@ -3020,7 +3020,7 @@ body[data-operator-layout="broadcast"] #tx-meters, body[data-operator-layout="broadcast"] #tx-limit-row, body[data-operator-layout="broadcast"] #vfo-row, body[data-operator-layout="broadcast"] #sam-controls-col, -body[data-operator-layout="broadcast"] .advanced-radio-controls { +body[data-operator-layout="broadcast"] #advanced-radio-controls { display: none !important; } body[data-operator-layout="broadcast"] .controls-row { diff --git a/src/trx-client/trx-frontend/trx-frontend-http/src/status.rs b/src/trx-client/trx-frontend/trx-frontend-http/src/status.rs index 3f53d1a2..c0a4a720 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/src/status.rs +++ b/src/trx-client/trx-frontend/trx-frontend-http/src/status.rs @@ -88,5 +88,6 @@ mod tests { "UI primitives must load before application code" ); assert!(UI_CORE_JS.contains("window.trxUi")); + assert!(html.contains("Scheduler controls")); } } -- 2.55.0