Skip to content

Commit 1976730

Browse files
fix(Column): corrected use of public attribute length
1 parent f49da41 commit 1976730

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/column.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/column.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/column.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ export class Column {
5252
* @returns boolean result
5353
*/
5454
private hasDataIndex(idx: number): boolean {
55-
return (idx >= 0 && idx < this.data.length);
55+
return (idx >= 0 && idx < this.length);
5656
}
5757
}

0 commit comments

Comments
 (0)