This is an automated email from the ASF dual-hosted git repository. panyuepeng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 451372aba24453aaa96fabbe711f14d1f08b2346 Author: och5351 <[email protected]> AuthorDate: Sat Apr 11 15:27:08 2026 +0900 [hotfix][runtime-web] Handle hyphen in the rescales/configuration tab when the schedulerExecutionMode variable value is null Co-authored-by: Matthias Pohl <[email protected]> Co-authored-by: Yuepeng Pan <[email protected]> --- .../src/app/pages/job/rescales/job-rescales.component.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flink-runtime-web/web-dashboard/src/app/pages/job/rescales/job-rescales.component.html b/flink-runtime-web/web-dashboard/src/app/pages/job/rescales/job-rescales.component.html index c282aa8c945..08eb8f69a69 100644 --- a/flink-runtime-web/web-dashboard/src/app/pages/job/rescales/job-rescales.component.html +++ b/flink-runtime-web/web-dashboard/src/app/pages/job/rescales/job-rescales.component.html @@ -391,8 +391,7 @@ <ng-container *ngIf="rescalesConfig"> <tr> <td>Scheduler Execution Mode</td> - <td *ngIf="rescalesConfig['schedulerExecutionMode'] === 'REACTIVE'">REACTIVE</td> - <td *ngIf="rescalesConfig['schedulerExecutionMode'] !== 'REACTIVE'"></td> + <td>{{ rescalesConfig['schedulerExecutionMode'] || '-' }}</td> </tr> <tr> <td>Submission Resource Wait Timeout</td>
