removed a description field
CI for csaxs_bec / test (pull_request) Successful in 1m29s
CI for csaxs_bec / test (push) Successful in 1m33s

This commit is contained in:
x12sa
2026-06-30 09:52:39 +02:00
parent cdf2ecca2a
commit 6597f2c528
@@ -1793,7 +1793,6 @@ def _render_html(phone_numbers: list) -> str:
.blstates-table tr:last-child td {{ border-bottom: none; }}
.blstates-table tr.mismatched td {{ color: var(--c-blocked); }}
.bl-name {{ font-family: var(--mono); font-size: 0.78rem; color: var(--text); white-space: nowrap; }}
.bl-label {{ color: var(--text-dim); }}
.bl-badge {{
display: inline-block; font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
letter-spacing: 0.06em; text-transform: uppercase; padding: 0.15rem 0.5rem;
@@ -2076,7 +2075,7 @@ def _render_html(phone_numbers: list) -> str:
<div class="blstates-summary" id="blstates-summary"></div>
<table class="blstates-table" id="blstates-table">
<thead>
<tr><th>State</th><th>Status</th><th>Watched</th><th>Label</th></tr>
<tr><th>State</th><th>Status</th><th>Watched</th></tr>
</thead>
<tbody id="blstates-tbody"></tbody>
</table>
@@ -2551,7 +2550,6 @@ function renderBeamlineStates(bl){{
+'<td class="bl-name">'+esc(s.name)+'</td>'
+'<td><span class="'+statusCls+'">'+esc(s.status)+'</span></td>'
+'<td><span class="'+watchedCls+'">'+(s.watched?'watched':'not watched')+'</span></td>'
+'<td class="bl-label">'+esc(s.label)+'</td>'
+'</tr>';
}});
tbody.innerHTML=html;