Skip to content

Commit e889955

Browse files
committed
fix(client-core): use ',' as standard axisValue delimiter
Fixes #19
1 parent 04dfd95 commit e889955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-client-core/src/ResultSet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default class ResultSet {
5353
return v;
5454
}
5555
};
56-
return axisValues.map(formatValue).join(delimiter || ':');
56+
return axisValues.map(formatValue).join(delimiter || ', ');
5757
}
5858

5959
normalizePivotConfig(pivotConfig) {

0 commit comments

Comments
 (0)