Fixed job manager running job icon (#3452)

This commit is contained in:
Anderson Shindy Oki
2026-07-20 14:22:59 +09:00
committed by GitHub
parent a493cf2450
commit 4bbb9a600b

View File

@@ -421,19 +421,21 @@ const JobsManager: FunctionComponent<JobsManagerProps> = ({
justify="center"
style={{ width: 42, height: 42 }}
>
<FontAwesomeIcon
icon={
status === "completed"
? faCheck
: faXmark
}
color={
status === "completed"
? "green"
: "red"
}
size="lg"
/>
{status === "completed" ? (
<FontAwesomeIcon
icon={faCheck}
color="green"
size="lg"
/>
) : status === "failed" ? (
<FontAwesomeIcon
icon={faXmark}
color="red"
size="lg"
/>
) : (
<Loader size="sm" />
)}
</Group>
))}
<Stack