Skip to content

Commit

Permalink
[FLINK-23111][runtime-web] Fix missing table component's nzFrontPagin…
Browse files Browse the repository at this point in the history
…ation input

This closes #16854.
  • Loading branch information
子扬 authored and twalthr committed Aug 17, 2021
1 parent 8d28e71 commit 12f853d
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
[nzSize]="'small'"
[nzData]="listOfLog"
[nzLoading]="isLoading"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzVirtualItemSize]="39"
[nzVirtualForTrackBy]="trackByName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
nzBordered
nzTitle="JVM (Heap/Non-Heap) Memory"
[nzTemplateMode]="true"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzSize]="'small'"
>
Expand Down Expand Up @@ -125,6 +126,7 @@
nzBordered
nzTitle="Outside JVM Memory"
[nzTemplateMode]="true"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzSize]="'small'"
>
Expand Down Expand Up @@ -157,6 +159,7 @@
nzBordered
nzTitle="Garbage Collection"
[nzTemplateMode]="true"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzSize]="'small'"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
[nzData]="listOfSubTaskCheckPoint"
[nzSize]="'small'"
[nzLoading]="isLoading"
[nzFrontPagination]="false"
[nzShowPagination]="false">
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
[nzSize]="'small'"
[nzData]="nodes"
[nzScroll]="{x:((1360+left)+'px')}"
[nzFrontPagination]="false"
[nzShowPagination]="false">
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
[nzLoading]="isLoading"
[nzData]="listOfTask"
[nzScroll]="{x:'1480px',y:'calc( 100% - 35px )'}"
[nzFrontPagination]="false"
[nzShowPagination]="false">
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
[nzLoading]="isLoading"
[nzData]="listOfTaskManager"
[nzScroll]="{x:'1500px',y:'calc( 100% - 35px )'}"
[nzFrontPagination]="false"
[nzShowPagination]="false">
<thead>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
[nzSize]="'small'"
[nzScroll]="{x:'1250px',y:'calc(100vh - 260px)'}"
[nzData]="listOfTaskManager"
[nzShowPagination]="false">
[nzFrontPagination]="false"
[nzShowPagination]="false"
>
<thead>
<tr>
<th nzLeft="0px" [nzWidth]="'280px'">Path, ID</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
[nzSize]="'small'"
[nzData]="listOfLog"
[nzLoading]="isLoading"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzVirtualItemSize]="39"
[nzVirtualForTrackBy]="trackByName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@
-->

<nz-card [nzBordered]="false" [nzTitle]="title" [nzLoading]="isLoading">
<nz-table class="no-border" #table
<nz-table
#table
class="no-border"
[nzSize]="'small'"
[nzData]="listOfJob"
[nzPageSize]="pageSize"
[nzFrontPagination]="false"
[nzShowPagination]="false"
>
<thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export class JobListComponent implements OnInit, OnDestroy {
destroy$ = new Subject();
sortName = 'start-time';
sortValue = 'descend';
pageSize = Infinity;
@Input() completed = false;
@Input() title: string;
@Input() jobData$: Observable<JobsItemInterface[]>;
Expand Down

0 comments on commit 12f853d

Please sign in to comment.