{/* Row 1: selection + type, with status badge + actions menu */}
{!isTagRow && selectCell && (
{selectCell}
)}
{typeCell}
{showStatusBadge && statusCell}
{actionsCell}
{/* Body: left column (id/name + balance) paired with a right-aligned
column (priority/weight + response/test time). */}
{/* Left column */}
{!isTagRow &&
#{row.original.id}
}
{nameCell}
{fieldLabels.balance}
{balanceCell ?? -}
{/* Right column (sits on the right, content left-aligned) */}
{t('Priority')}
{t('Weight')}
{priorityCell}
{weightCell}
{fieldLabels.response_time}
{fieldLabels.test_time}
{responseCell ?? -}
{testCell ?? -}
{/* Last row: groups span the full width, showing every group (no label) */}
{groups.length > 0 ? (
{groups.map((g) => (
))}
) : (
-
)}
)
}