Clicking on task title should navigate into task (#1295)

This commit is contained in:
Shuchang Zheng
2024-11-29 12:29:04 -08:00
committed by GitHub
parent 110a11c6b5
commit 0b2252ddf7

View File

@@ -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>