This is an automated email from the ASF dual-hosted git repository.
RocMarshal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new b834206ba5e [FLINK-39551][runtime-web] Fix the styling of the ignored
badge in the rescale history subpage (#28038)
b834206ba5e is described below
commit b834206ba5e93b92946d9b59cc9cc774c3701363
Author: Chan hae OH <[email protected]>
AuthorDate: Mon Apr 27 19:49:23 2026 +0900
[FLINK-39551][runtime-web] Fix the styling of the ignored badge in the
rescale history subpage (#28038)
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;