Skip to content

Commit

Permalink
Merge branch 'feat/workflow-continue-on-error' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhlyh committed Dec 5, 2024
2 parents bc8078e + 6f75c00 commit d2c88fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions web/app/components/workflow/run/meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ const MetaData: FC<Props> = ({
{status === 'succeeded' && (
<span>SUCCESS</span>
)}
{status === 'partial-succeeded' && (
<span>PARTIAL SUCCESS</span>
)}
{status === 'failed' && (
<span>FAIL</span>
)}
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/workflow/run/node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const NodePanel: FC<Props> = ({
<Split className='mt-2' />
</div>
)}
<div className={cn('px-[10px]', hideInfo && '!px-2 !py-0.5')}>
<div className={cn('mb-1', hideInfo && '!px-2 !py-0.5')}>
{(nodeInfo.status === 'stopped') && (
<StatusContainer status='stopped'>
{t('workflow.tracing.stopBy', { user: nodeInfo.created_by ? nodeInfo.created_by.name : 'N/A' })}
Expand Down

0 comments on commit d2c88fa

Please sign in to comment.