Skip to content

Commit

Permalink
Fix parentTaskId row in meta table
Browse files Browse the repository at this point in the history
  • Loading branch information
gafetinov committed Dec 5, 2023
1 parent 856b5da commit 7ee4b80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const TaskDetailsMetaTable = ({
<tr key={"ParentTaskId"}>
<td>{"ParentTaskId"}</td>
<td data-tid={"ParentTaskId"}>
<RouterLink to={`../${parentTaskId}`}>{parentTaskId}</RouterLink>
{parentTaskId && <RouterLink to={`../${parentTaskId}`}>{parentTaskId}</RouterLink>}
</td>
</tr>,
<tr key="ChildTaskIds">
Expand Down

0 comments on commit 7ee4b80

Please sign in to comment.