Skip to content

Commit 4614218

Browse files
committed
Remove defaulting to empty string in tablePivot
1 parent 78ec2a5 commit 4614218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ export default class ResultSet<T extends Record<string, any> = any> {
784784
[
785785
...(normalizedPivotConfig.x).map((key, index): [string, string | number] => [
786786
key,
787-
xValues[index] ?? ''
787+
xValues[index]
788788
]),
789789
...(isMeasuresPresent
790790
? yValuesArray.map(([yValues, measure]): [string, string | number] => [

0 commit comments

Comments
 (0)