Lage-Dropdown: Nur aktive Live-Monitorings

Dieser Commit ist enthalten in:
Claude Dev
2026-03-24 13:45:18 +01:00
Ursprung 119ef988fe
Commit e992953616

Datei anzeigen

@@ -117,7 +117,7 @@ const Globe = {
.then(function(lagen) { .then(function(lagen) {
var html = '<option value="">-- Lage waehlen --</option>'; var html = '<option value="">-- Lage waehlen --</option>';
(lagen || []).forEach(function(l) { (lagen || []).forEach(function(l) {
var typeLabel = l.type === 'research' ? '[R] ' : '[L] '; var typeLabel = '';
html += '<option value="' + l.id + '">' + typeLabel + l.title + '</option>'; html += '<option value="' + l.id + '">' + typeLabel + l.title + '</option>';
}); });
select.innerHTML = html; select.innerHTML = html;