This is an automated email from the ASF dual-hosted git repository.

xuba pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new f13f3f340 [AMORO-3288] Status color of running and submitted (#3298)
f13f3f340 is described below

commit f13f3f340127e3447918e014766337b6b3bb58f6
Author: Nafis Reza <[email protected]>
AuthorDate: Fri Oct 25 13:17:13 2024 +0600

    [AMORO-3288] Status color of running and submitted (#3298)
    
    Update Optimizing.vue
---
 amoro-web/src/views/tables/components/Optimizing.vue | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/amoro-web/src/views/tables/components/Optimizing.vue 
b/amoro-web/src/views/tables/components/Optimizing.vue
index 7dde98a2b..ac24a9e70 100644
--- a/amoro-web/src/views/tables/components/Optimizing.vue
+++ b/amoro-web/src/views/tables/components/Optimizing.vue
@@ -30,7 +30,8 @@ const hasBreadcrumb = ref<boolean>(false)
 
 const statusMap = {
   PENDING: { title: 'PENDING', color: '#ffcc00' },
-  ACTIVE: { title: 'ACTIVE', color: '#1890ff' },
+  RUNNING: { title: 'RUNNING', color: '#1890ff' },
+  SUBMITTED: { title: 'SUBMITTED', color: '#4169E1' },
   CLOSED: { title: 'CLOSED', color: '#c9cdd4' },
   SUCCESS: { title: 'SUCCESS', color: '#0ad787' },
   FAILED: { title: 'FAILED', color: '#f5222d' },

Reply via email to