Differs by {formatFieldLabel(field.field)}
{chips.map((chip, idx) => {
const friendly = extractFriendlyLabel(chip.raw)
const tooltipBody = friendly ? formatSignalValue(chip.raw) : null
const pill = (
{chip.label}
)
return tooltipBody ? (
{tooltipBody}
}
>
{pill}
) : (
{pill}
)
})}
{overflow > 0 && (
+{overflow} more
)}
)
})}
{scoresByOrganization && Object.keys(scoresByOrganization).length > 0 && (
{Object.entries(scoresByOrganization).slice(0, 4).map(([org, score]) => (
{org}: {formatSignalNumber(score)}
))}
)}