Skip to content

Commit 19f081a

Browse files
committed
fix
1 parent 3b7d768 commit 19f081a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-schema-compiler/src/compiler/CubeToMetaTransformer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export class CubeToMetaTransformer {
198198
}
199199

200200
dimensionDataType(dimensionType) {
201-
dimensionType === 'switch' ? 'string' : dimensionType;
201+
return dimensionType === 'switch' ? 'string' : dimensionType;
202202
}
203203

204204
measureConfig(cubeName, cubeTitle, nameToMetric) {

0 commit comments

Comments
 (0)