Merge branch 'master' of https://github.com/primefaces/primevue
commit
4bf74ac1f7
|
@ -1813,7 +1813,7 @@ export default {
|
||||||
},
|
},
|
||||||
allRowsSelected() {
|
allRowsSelected() {
|
||||||
const val = this.frozenValue ? [...this.frozenValue, ...this.processedData]: this.processedData;
|
const val = this.frozenValue ? [...this.frozenValue, ...this.processedData]: this.processedData;
|
||||||
const length = this.lazy ? this.totalRecords : val?.length;
|
const length = this.lazy ? this.totalRecords : (val ? val.length : 0);
|
||||||
return (val && length > 0 && this.selection && this.selection.length > 0 && this.selection.length === length);
|
return (val && length > 0 && this.selection && this.selection.length > 0 && this.selection.length === length);
|
||||||
},
|
},
|
||||||
attributeSelector() {
|
attributeSelector() {
|
||||||
|
|
Loading…
Reference in New Issue