Clicking on task title should navigate into task (#1295)
This commit is contained in:
@@ -79,6 +79,9 @@ function WorkflowBlockCollapsibleContent({ task, onNavigate }: Props) {
|
|||||||
<TableCell
|
<TableCell
|
||||||
className="w-1/5 max-w-0 cursor-pointer truncate"
|
className="w-1/5 max-w-0 cursor-pointer truncate"
|
||||||
title={task.request.title ?? undefined}
|
title={task.request.title ?? undefined}
|
||||||
|
onClick={(event) => {
|
||||||
|
onNavigate(event, task.task_id);
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
{task.request.title}
|
{task.request.title}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|||||||
Reference in New Issue
Block a user