From e992953616824a3cb1ac3b50e2b3034c1c680bc3 Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Tue, 24 Mar 2026 13:45:18 +0100 Subject: [PATCH] Lage-Dropdown: Nur aktive Live-Monitorings --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 129130c..92f5c6b 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -117,7 +117,7 @@ const Globe = { .then(function(lagen) { var html = ''; (lagen || []).forEach(function(l) { - var typeLabel = l.type === 'research' ? '[R] ' : '[L] '; + var typeLabel = ''; html += ''; }); select.innerHTML = html;