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

RocMarshal pushed a commit to branch release-2.3
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-2.3 by this push:
     new 386a80c211b [FLINK-39551][runtime-web] Fix the styling of the ignored 
badge in the rescale history subpage (#28039)
386a80c211b is described below

commit 386a80c211b26c9e0bcaaba6fcc885caeb50ede0
Author: Chan hae OH <[email protected]>
AuthorDate: Mon Apr 27 19:50:46 2026 +0900

    [FLINK-39551][runtime-web] Fix the styling of the ignored badge in the 
rescale history subpage (#28039)
    
    Co-authored-by: Yuepeng Pan <[email protected]>
---
 flink-runtime-web/web-dashboard/src/app/services/config.service.ts | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/flink-runtime-web/web-dashboard/src/app/services/config.service.ts 
b/flink-runtime-web/web-dashboard/src/app/services/config.service.ts
index 4992bc0500f..d58b844ae5c 100644
--- a/flink-runtime-web/web-dashboard/src/app/services/config.service.ts
+++ b/flink-runtime-web/web-dashboard/src/app/services/config.service.ts
@@ -33,7 +33,8 @@ export type ColorKey =
   | 'COMPLETED'
   | 'RESTARTING'
   | 'PENDING'
-  | 'INITIALIZING';
+  | 'INITIALIZING'
+  | 'IGNORED';
 
 @Injectable({
   providedIn: 'root'
@@ -56,7 +57,8 @@ export class ConfigService {
     COMPLETED: '#1890ff',
     RESTARTING: '#13c2c2',
     INITIALIZING: '#738df8',
-    PENDING: '#95a5a6'
+    PENDING: '#95a5a6',
+    IGNORED: '#faad14'
   };
 
   LONG_MIN_VALUE = -9223372036854776000;

Reply via email to