(interfaceName, payload)
| 8766 | html += `<tr class="border-t border-slate-800"> |
| 8767 | <td class="px-2 py-1 font-mono">${fwd.group}/${fwd.forwarder}</td> |
| 8768 | <td class="px-2 py-1 font-mono ${o.baseline ? '' : 'text-red-300'}">${escapeHtml(o.src)}</td> |
| 8769 | <td class="px-2 py-1 font-mono text-gray-400">${escapeHtml(o.vmac || '—')}</td> |
| 8770 | <td class="px-2 py-1 font-mono">${o.vf_priority == null ? '—' : o.vf_priority}</td> |
| 8771 | <td class="px-2 py-1 font-mono">${o.weight == null ? '—' : o.weight}</td> |
| 8772 | <td class="px-2 py-1 text-gray-400">${escapeHtml((o.states || []).join(', ') || '—')}</td> |
| 8773 | <td class="px-2 py-1">${badge}</td> |
| 8774 | </tr>`; |
| 8775 | }); |
| 8776 | }); |
| 8777 | html += '</tbody></table>'; |
| 8778 | } |
| 8779 | if (d.reasons && d.reasons.length) { |
| 8780 | html += '<ul class="text-xs text-gray-400 mt-2 list-disc pl-5">' + |
no test coverage detected