Skip to content

Commit 8dfd47e

Browse files
committed
Fix for the tags making the run table rows taller
1 parent 5526465 commit 8dfd47e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/runs/v3/TaskRunsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export function TaskRunsTable({
341341
{run.delayUntil ? <DateTime date={run.delayUntil} /> : "–"}
342342
</TableCell>
343343
<TableCell to={path}>{run.ttl ?? "–"}</TableCell>
344-
<TableCell to={path}>
344+
<TableCell to={path} actionClassName="py-1">
345345
<div className="flex gap-1">
346346
{run.tags.map((tag) => <RunTag key={tag} tag={tag} />) || "–"}
347347
</div>

0 commit comments

Comments
 (0)