From 0cb013a7fded554c293a25db9ac7f6fe21fc1857 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Wed, 15 May 2024 12:39:50 +0300 Subject: [PATCH] Refactor probe link placement in UI Moved the 'probe' link from the global templates array to individual stream status columns for improved clarity and accessibility. This change enhances the interface by contextualizing the 'probe' option, making it directly accessible alongside each stream's online status and info link, thereby streamlining the user experience and emphasizing the function's importance on a per-stream basis. This adjustment follows usability feedback indicating that users prefer immediate access to stream diagnostics. --- www/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/www/index.html b/www/index.html index ff552e15..6adf9f0a 100644 --- a/www/index.html +++ b/www/index.html @@ -60,7 +60,6 @@ const templates = [ 'stream', 'links', - 'probe', 'delete', ]; @@ -140,7 +139,7 @@ const isChecked = checkboxStates[name] ? 'checked' : ''; tr.innerHTML = `` + - `${online} / info` + + `${online} / info / probe` + `${links}`; }