Skip to content

Commit 1494ec2

Browse files
Add an example UI Change
1 parent 028bfba commit 1494ec2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

flink-runtime-web/web-dashboard/src/app/interfaces/job-checkpoint.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ export interface CheckpointDetail {
142142
id: number;
143143
status: string;
144144
is_savepoint: boolean;
145+
is_full_checkpoint: boolean;
145146
savepointFormat: string;
146147
trigger_timestamp: number;
147148
latest_ack_timestamp: number;

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
~ limitations under the License.
1717
-->
1818
<div class="extra">
19-
<strong>Checkpoint Detail:</strong>
2019
<div class="more-detail">
2120
<strong>Path:</strong>
2221
{{ checkPointDetail?.external_path || '-' }}
@@ -26,6 +25,9 @@
2625
<nz-divider nzType="vertical"></nz-divider>
2726
<strong>Checkpoint Type:</strong>
2827
{{ checkPointType }}
28+
<nz-divider nzType="vertical"></nz-divider>
29+
<strong>Full Checkpoint:</strong>
30+
{{ checkPointDetail?.is_full_checkpoint }}
2931
<ng-container *ngIf="checkPointDetail?.savepointFormat">
3032
<nz-divider nzType="vertical"></nz-divider>
3133
<strong>Savepoint Format:</strong>

0 commit comments

Comments
 (0)