Skip to content

Commit

Permalink
Add tooltips to action and navigation blocks (#1375)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Dec 12, 2024
1 parent 0f18080 commit 6c36d6b
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 6c36d6b

Please sign in to comment.