Skip to content

Commit 93e68e4

Browse files
committed
Removes taskIdentifier, not needed
1 parent ef3699c commit 93e68e4

File tree

1 file changed

+1
-5
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam

1 file changed

+1
-5
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -601,14 +601,13 @@ function TasksTreeView({
601601
min={resizableSettings.tree.tree.min}
602602
>
603603
<div className="grid h-full grid-rows-[2rem_1fr] overflow-hidden">
604-
<div className="flex items-center pl-1 pr-2 justify-between">
604+
<div className="flex items-center justify-between pl-1 pr-2">
605605
{rootRun || parentRun ? (
606606
<ShowParentOrRootLinks
607607
relationships={{
608608
root: rootRun
609609
? {
610610
friendlyId: rootRun.friendlyId,
611-
taskIdentifier: rootRun.taskIdentifier,
612611
spanId: rootRun.spanId,
613612
isParent: parentRun ? rootRun.friendlyId === parentRun.friendlyId : true,
614613
}
@@ -617,7 +616,6 @@ function TasksTreeView({
617616
parentRun && rootRun?.friendlyId !== parentRun.friendlyId
618617
? {
619618
friendlyId: parentRun.friendlyId,
620-
taskIdentifier: "",
621619
spanId: "",
622620
}
623621
: undefined,
@@ -1161,13 +1159,11 @@ function ShowParentOrRootLinks({
11611159
relationships: {
11621160
root?: {
11631161
friendlyId: string;
1164-
taskIdentifier: string;
11651162
spanId: string;
11661163
isParent?: boolean;
11671164
};
11681165
parent?: {
11691166
friendlyId: string;
1170-
taskIdentifier: string;
11711167
spanId: string;
11721168
};
11731169
};

0 commit comments

Comments
 (0)