(mode)
| 6736 | listEl.innerHTML = alerts.map(a => { |
| 6737 | const [cls] = _WT_SEV_STYLE[a.severity] || _WT_SEV_STYLE.info; |
| 6738 | const t = a.ts ? new Date(a.ts * 1000).toLocaleString() : ''; |
| 6739 | const codes = (a.codes || []).join(', '); |
| 6740 | const ep = [a.src, a.target].filter(Boolean).map(escapeHtml).join(' → '); |
| 6741 | return `<div class="rounded-lg border ${cls} px-3 py-2"> |
| 6742 | <div class="flex items-start justify-between gap-3"> |
| 6743 | <div class="min-w-0"> |
no outgoing calls
no test coverage detected