From 7f638557155135a0340154d5bcacc33e0a739791 Mon Sep 17 00:00:00 2001 From: svetaStrech Date: Sun, 21 Jan 2024 13:55:56 +0200 Subject: [PATCH] update async status --- ui_src/src/components/asyncTasks/index.js | 8 +++----- ui_src/src/components/asyncTasks/style.scss | 3 +++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ui_src/src/components/asyncTasks/index.js b/ui_src/src/components/asyncTasks/index.js index 1b76ab577..040ca07c0 100644 --- a/ui_src/src/components/asyncTasks/index.js +++ b/ui_src/src/components/asyncTasks/index.js @@ -115,11 +115,9 @@ const AsyncTasks = ({ overView, children }) => { ((!showMore && index < 3) || showMore) && (
- {task?.status === 'running' && ( - - - - )} + + +
diff --git a/ui_src/src/components/asyncTasks/style.scss b/ui_src/src/components/asyncTasks/style.scss index d4a09d1c3..0e33265a5 100644 --- a/ui_src/src/components/asyncTasks/style.scss +++ b/ui_src/src/components/asyncTasks/style.scss @@ -107,3 +107,6 @@ cursor: pointer; } } +.ant-badge-status-processing { + background-color: var(--purple); +}