diff --git a/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx b/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx index d656c4cc..bbce8219 100644 --- a/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx +++ b/skyvern-frontend/src/routes/tasks/detail/ScrollableActionList.tsx @@ -1,5 +1,11 @@ import { getClient } from "@/api/AxiosClient"; import { Action, ActionTypes } from "@/api/types"; +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip"; import { ScrollArea, ScrollAreaViewport } from "@/components/ui/scroll-area"; import { Separator } from "@/components/ui/separator"; import { useCredentialGetter } from "@/hooks/useCredentialGetter"; @@ -82,9 +88,18 @@ function ScrollableActionList({
{action.created_by === "script" && ( -
- -
+ + + +
+ +
+
+ + Scripted Execution + +
+
)} {action.success ? (
diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/ActionCard.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/ActionCard.tsx index 4d62b8e4..069abd90 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/ActionCard.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/ActionCard.tsx @@ -1,4 +1,10 @@ import { ActionsApiResponse, ActionTypes, Status } from "@/api/types"; +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip"; import { Separator } from "@/components/ui/separator"; import { ActionTypePill } from "@/routes/tasks/detail/ActionTypePill"; import { cn } from "@/util/utils"; @@ -52,9 +58,18 @@ function ActionCard({ action, onClick, active, index }: Props) {
{action.created_by === "script" && ( -
- -
+ + + +
+ +
+
+ + Scripted Execution + +
+
)} {success ? (