[fix](trx-frontend-http): hide scheduler controls in main view when scheduler disabled
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
@@ -354,6 +354,10 @@
|
||||
// Mode selector
|
||||
setSelected("scheduler-mode-select", mode);
|
||||
|
||||
// Show/hide main-view scheduler controls
|
||||
const controlRow = document.querySelector(".scheduler-control-row");
|
||||
if (controlRow) controlRow.style.display = mode !== "disabled" ? "" : "none";
|
||||
|
||||
// Show/hide sections
|
||||
const glSection = document.getElementById("scheduler-grayline-section");
|
||||
const tsSection = document.getElementById("scheduler-timespan-section");
|
||||
|
||||
Reference in New Issue
Block a user