pull/1478/head
mertsincan 2021-08-24 16:56:37 +03:00
parent 593b23af70
commit 52cc71e12b
1 changed files with 1 additions and 1 deletions

View File

@ -1813,7 +1813,7 @@ export default {
},
allRowsSelected() {
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);
},
attributeSelector() {