add icon for scripted actions (#3274)

This commit is contained in:
Jonathan Dobson
2025-08-22 10:30:49 -04:00
committed by GitHub
parent f57d17f11e
commit 2903291dc4
4 changed files with 21 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ import {
CheckCircledIcon,
CrossCircledIcon,
DotFilledIcon,
LightningBoltIcon,
} from "@radix-ui/react-icons";
import { useQueryClient } from "@tanstack/react-query";
import { ReactNode, useRef } from "react";
@@ -80,6 +81,11 @@ function ScrollableActionList({
</div>
<div className="flex items-center gap-2">
<ActionTypePill actionType={action.type} />
{action.created_by === "script" && (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<LightningBoltIcon className="h-4 w-4 text-[gold]" />
</div>
)}
{action.success ? (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<CheckCircledIcon className="h-4 w-4 text-success" />

View File

@@ -107,6 +107,7 @@ function useActions({ id }: Props): {
success: actionResult?.[0]?.success ?? false,
stepId: step.step_id,
index,
created_by: action.created_by,
};
});
return actions;
@@ -123,6 +124,7 @@ function useActions({ id }: Props): {
action.status === Status.Skipped,
stepId: action.step_id ?? "",
index: action.action_order ?? 0,
created_by: action.created_by,
};
});