Skip to content

Commit 8425361

Browse files
committed
improved spacing of items
1 parent 5a33a00 commit 8425361

File tree

1 file changed

+16
-18
lines changed
  • apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.v3.$projectParam.runs.$runParam.spans.$spanParam

1 file changed

+16
-18
lines changed

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.v3.$projectParam.runs.$runParam.spans.$spanParam/route.tsx

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -310,24 +310,22 @@ function SpanBody({
310310
<Property.Item>
311311
<Property.Label>Triggered runs</Property.Label>
312312
<Property.Value>
313-
<div className="space-y-1">
314-
{span.triggeredRuns.map((run) => (
315-
<TextLink
316-
to={v3RunSpanPath(
317-
organization,
318-
project,
319-
{ friendlyId: run.friendlyId },
320-
{ spanId: run.spanId }
321-
)}
322-
className="group flex flex-wrap items-center gap-x-1 gap-y-0"
323-
>
324-
{run.taskIdentifier}
325-
<span className="break-all text-text-dimmed transition-colors group-hover:text-text-bright/80">
326-
({run.friendlyId})
327-
</span>
328-
</TextLink>
329-
))}
330-
</div>
313+
{span.triggeredRuns.map((run) => (
314+
<TextLink
315+
to={v3RunSpanPath(
316+
organization,
317+
project,
318+
{ friendlyId: run.friendlyId },
319+
{ spanId: run.spanId }
320+
)}
321+
className="group flex flex-wrap items-center gap-x-1 gap-y-0"
322+
>
323+
{run.taskIdentifier}
324+
<span className="break-all text-text-dimmed transition-colors group-hover:text-text-bright/80">
325+
({run.friendlyId})
326+
</span>
327+
</TextLink>
328+
))}
331329
</Property.Value>
332330
</Property.Item>
333331
)}

0 commit comments

Comments
 (0)