Skip to content

Commit

Permalink
Update utils.ts
Browse files Browse the repository at this point in the history
use orange instead of red for aborted
  • Loading branch information
jjoyce0510 authored Jul 2, 2024
1 parent 70ec1f9 commit e5f2f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/ingest/source/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const getExecutionRequestStatusDisplayColor = (status: string) => {
(status === ROLLED_BACK && 'orange') ||
(status === ROLLING_BACK && 'orange') ||
(status === ROLLBACK_FAILED && 'red') ||
(status === ABORTED && 'red') ||
(status === ABORTED && 'orange') ||
ANTD_GRAY[7]
);
};
Expand Down

0 comments on commit e5f2f92

Please sign in to comment.