mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-07-30 17:48:04 -04:00
Fixed job manager running job icon (#3452)
This commit is contained in:
committed by
GitHub
parent
a493cf2450
commit
4bbb9a600b
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user