Skip to content

Commit 5c9edc7

Browse files
och5351XCompRocMarshal
committed
[hotfix][runtime-web] Handle hyphen in the rescales/configuration tab when the schedulerExecutionMode variable value is null
Co-authored-by: Matthias Pohl <mpohl@confluent.io> Co-authored-by: Yuepeng Pan <hipanyuepeng@gmail.com>
1 parent a59d738 commit 5c9edc7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

flink-runtime-web/web-dashboard/src/app/pages/job/rescales/job-rescales.component.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,7 @@ <h3><strong>Rescale Details</strong></h3>
391391
<ng-container *ngIf="rescalesConfig">
392392
<tr>
393393
<td>Scheduler Execution Mode</td>
394-
<td *ngIf="rescalesConfig['schedulerExecutionMode'] === 'REACTIVE'">REACTIVE</td>
395-
<td *ngIf="rescalesConfig['schedulerExecutionMode'] !== 'REACTIVE'"></td>
394+
<td>{{ rescalesConfig['schedulerExecutionMode'] || '-' }}</td>
396395
</tr>
397396
<tr>
398397
<td>Submission Resource Wait Timeout</td>

0 commit comments

Comments
 (0)