Merge pull request #2666 from alecmerdler/fix-cor-table-pagination
Fix CorTableComponent Pagination Error
This commit is contained in:
commit
abebeef9dc
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ export class CorTableComponent implements OnChanges {
|
|||
@Input('@') public tableItemTitle: string;
|
||||
@Input('<') public filterFields: string[];
|
||||
@Input('@') public compact: string;
|
||||
@Input('<') public maxDisplayCount: number;
|
||||
@Input('<') public maxDisplayCount: number = 10;
|
||||
private columns: CorTableColumn[];
|
||||
private orderedData: any;
|
||||
private options: any;
|
||||
|
|
Reference in a new issue