Fix for the tags making the run table rows taller

This commit is contained in:
Matt Aitken
2024-07-23 19:17:02 +01:00
parent 55264657d7
commit 8dfd47eb41
@@ -341,7 +341,7 @@ export function TaskRunsTable({
{run.delayUntil ? <DateTime date={run.delayUntil} /> : ""}
</TableCell>
<TableCell to={path}>{run.ttl ?? ""}</TableCell>
<TableCell to={path}>
<TableCell to={path} actionClassName="py-1">
<div className="flex gap-1">
{run.tags.map((tag) => <RunTag key={tag} tag={tag} />) || ""}
</div>