Fix: letzter STATUS_CLASS-Verweis auf Inline-Style umgestellt

This commit is contained in:
rene 2026-05-17 17:10:45 +02:00
parent 878296741e
commit 5af57175c8

View file

@ -196,7 +196,7 @@
{#each liveLogs as log}
<tr>
<td class="proto-station">{log.expand?.station?.name ?? '—'}</td>
<td><span class="entry-badge {STATUS_CLASS[log.status] ?? 'ok'}">{STATUS_LABEL[log.status]}</span></td>
<td><span class="entry-badge" style={BADGE_STYLE[log.status] ?? BADGE_STYLE.ok}>{STATUS_LABEL[log.status] ?? log.status}</span></td>
<td>{log.temperature ? log.temperature + '°' : '—'}</td>
<td class="proto-time">{formatTime(log.created)}</td>
</tr>