feat: show irc channel status

This commit is contained in:
Ludvig Lundgren 2022-01-09 02:41:19 +01:00
parent f103dff221
commit 140fc97398
3 changed files with 155 additions and 119 deletions

View file

@ -140,7 +140,7 @@ export function ReleaseStatusCell({ value, column, row }: ReleaseStatusCellProps
}
return (
<div className="flex text-sm font-medium text-gray-900 dark:text-gray-300">
{value.map(v => <div title={`action: ${v.action}, type: ${v.type}, status: ${v.status}, ;time: ${v.timestamp}`}>{statusMap[v.status]}</div>)}
{value.map((v, idx) => <div key={idx} title={`action: ${v.action}, type: ${v.type}, status: ${v.status}, ;time: ${v.timestamp}`}>{statusMap[v.status]}</div>)}
</div>
)
}