From 584cb237fe5f25ce737878b36a6e4b4751147606 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Thu, 22 Feb 2024 20:38:43 -0500 Subject: [PATCH] ui: The labels weren't useful. --- static/lib.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/static/lib.js b/static/lib.js index 16ea915..94bee5c 100644 --- a/static/lib.js +++ b/static/lib.js @@ -172,12 +172,9 @@ class TimeseriesGraph extends HTMLElement { } buildSelectElement(key) { + // TODO(jwall): Should we have a select all? var id = key + "-select" + Math.random(); const element = document.createElement("div"); - const label = document.createElement("label"); - label.innerText = key + ": "; - label.setAttribute("for", id); - element.appendChild(label); const select = document.createElement("select"); select.setAttribute("name", id); select.setAttribute("multiple", true);