[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-01-26 11:24:44 +00:00
committed by GitHub
parent 14828853b1
commit 01a05289e9
688 changed files with 1639 additions and 2998 deletions

View File

@ -4,12 +4,7 @@ import type {
import type {
NodeProps,
} from '@/app/components/workflow/types'
import {
RiAlertFill,
RiCheckboxCircleFill,
RiErrorWarningFill,
RiLoader2Line,
} from '@remixicon/react'
import {
memo,
useMemo,
@ -112,22 +107,22 @@ const SimpleNode: FC<SimpleNodeProps> = ({
</div>
{
(data._runningStatus === NodeRunningStatus.Running || data._singleRunningStatus === NodeRunningStatus.Running) && (
<RiLoader2Line className="h-3.5 w-3.5 animate-spin text-text-accent" />
<span className="i-ri-loader-2-line h-3.5 w-3.5 animate-spin text-text-accent" />
)
}
{
data._runningStatus === NodeRunningStatus.Succeeded && (
<RiCheckboxCircleFill className="h-3.5 w-3.5 text-text-success" />
<span className="i-ri-checkbox-circle-fill h-3.5 w-3.5 text-text-success" />
)
}
{
data._runningStatus === NodeRunningStatus.Failed && (
<RiErrorWarningFill className="h-3.5 w-3.5 text-text-destructive" />
<span className="i-ri-error-warning-fill h-3.5 w-3.5 text-text-destructive" />
)
}
{
data._runningStatus === NodeRunningStatus.Exception && (
<RiAlertFill className="h-3.5 w-3.5 text-text-warning-secondary" />
<span className="i-ri-alert-fill h-3.5 w-3.5 text-text-warning-secondary" />
)
}
</div>