From af0b233176b82a7d27dfacad687d1ea3d92c532d Mon Sep 17 00:00:00 2001 From: Camillo Bruni Date: Thu, 16 Jul 2026 10:10:25 +0200 Subject: [PATCH 1/2] link --- resources/developer-mode.mjs | 8 ++++++++ resources/main.css | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/resources/developer-mode.mjs b/resources/developer-mode.mjs index ec906d4a6..8544373c6 100644 --- a/resources/developer-mode.mjs +++ b/resources/developer-mode.mjs @@ -218,6 +218,14 @@ function createUIForSuites() { } }; + const link = document.createElement("a"); + link.href = suite.url; + link.target = "_blank"; + link.title = "Open raw workload page"; + link.className = "workload-url-link"; + link.textContent = "\u{1F517}"; + li.appendChild(link); + ol.appendChild(li); } control.appendChild(ol); diff --git a/resources/main.css b/resources/main.css index 86c8207ed..dcc6c4af5 100644 --- a/resources/main.css +++ b/resources/main.css @@ -326,6 +326,14 @@ button, text-align: right; } +.suites li { + display: flex; + justify-content: space-between; +} +.suites a { + text-decoration: none; +} + .developer-mode-content li + li { margin-top: 0px; } From d955676f5e6ccde2c589d9d22b7091eaebaea48e Mon Sep 17 00:00:00 2001 From: Camillo Bruni Date: Thu, 16 Jul 2026 10:22:56 +0200 Subject: [PATCH 2/2] clenaup --- resources/developer-mode.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/developer-mode.mjs b/resources/developer-mode.mjs index 8544373c6..1a549c826 100644 --- a/resources/developer-mode.mjs +++ b/resources/developer-mode.mjs @@ -221,7 +221,7 @@ function createUIForSuites() { const link = document.createElement("a"); link.href = suite.url; link.target = "_blank"; - link.title = "Open raw workload page"; + link.title = "Raw workload URL"; link.className = "workload-url-link"; link.textContent = "\u{1F517}"; li.appendChild(link);