added default maxDisplayCount for cor-table to fix pagination NaN error
This commit is contained in:
parent
6ed5235dfd
commit
e53ade6bd4
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