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]
> Add tooltips to `ActionNode.tsx` and `NavigationNode.tsx` to provide execution guidance.
>
>   - **UI Enhancements**:
>     - Added tooltips to `ActionNode.tsx` and `NavigationNode.tsx`.
>     - `ActionNode.tsx`: Tooltip explains that only one action is taken during execution.
>     - `NavigationNode.tsx`: Tooltip explains that multiple actions are taken to achieve a single goal.
>
> <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 bb541e45e4b46a103484dc6f8ebd2cac1a256599. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Dec 12, 2024
1 parent 0f18080 commit 7bf5793
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ function ActionNode({ id, data }: NodeProps<ActionNode>) {
className="nopan text-xs"
/>
</div>
<div className="rounded-md bg-slate-800 p-2">
<div className="space-y-1 text-xs text-slate-400">
Tip: While executing the action block, Skyvern will only take one
action.
</div>
</div>
</div>
<Separator />
<Accordion type="single" collapsible>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function NavigationNode({ id, data }: NodeProps<NavigationNode>) {
}}
/>
</header>
<div className="space-y-2">
<div className="space-y-4">
<div className="space-y-2">
<div className="flex gap-2">
<Label className="text-xs text-slate-300">URL</Label>
Expand Down Expand Up @@ -129,6 +129,12 @@ function NavigationNode({ id, data }: NodeProps<NavigationNode>) {
className="nopan text-xs"
/>
</div>
<div className="rounded-md bg-slate-800 p-2">
<div className="space-y-1 text-xs text-slate-400">
Tip: While executing the navigation block, Skyvern will take
multiple actions to accomplish a single goal.
</div>
</div>
</div>
<Separator />
<Accordion type="single" collapsible>
Expand Down

0 comments on commit 7bf5793

Please sign in to comment.