Skip to content

Commit

Permalink
🔄 synced local 'skyvern-frontend/src/' with remote 'skyvern-frontend/…
Browse files Browse the repository at this point in the history
…src/'

<!-- ELLIPSIS_HIDDEN -->

> [!IMPORTANT]
> Adds `onClick` event to task title in `WorkflowBlockCollapsibleContent.tsx` for navigation.
>
>   - **Behavior**:
>     - Adds `onClick` event to `TableCell` in `WorkflowBlockCollapsibleContent.tsx` to navigate to task details when task title is clicked.
>
> <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for 3a6c5f9e6eeca5cb3ffa865480be9dfd1af82cf2. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Nov 29, 2024
1 parent 110a11c commit d8ebf99
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ function WorkflowBlockCollapsibleContent({ task, onNavigate }: Props) {
<TableCell
className="w-1/5 max-w-0 cursor-pointer truncate"
title={task.request.title ?? undefined}
onClick={(event) => {
onNavigate(event, task.task_id);
}}
>
{task.request.title}
</TableCell>
Expand Down

0 comments on commit d8ebf99

Please sign in to comment.