Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Nov 23, 2018
1 parent df61104 commit 9be7862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function deriveType(label: string, value: any, column: number | string, all: ()=
const first = value[0];
if (typeof first === 'number') {
base.type = 'numbers';
base.domain = extent((<number[]>[]).concat(...values);
base.domain = extent((<number[]>[]).concat(...values));
return base;
}
if (typeof first === 'boolean') {
Expand Down

0 comments on commit 9be7862

Please sign in to comment.