diff --git a/resources/developer-mode.mjs b/resources/developer-mode.mjs index ec906d4a6..1a549c826 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 = "Raw workload URL"; + 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; }