Skip to content

Commit e40ae8d

Browse files
author
GitHub Actions Bot
committed
style: auto-formatting [CI]
1 parent 076a14d commit e40ae8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/stack.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ export function stack(m: Mark | MarkDef, encoding: Encoding<string>): StackPrope
186186
//2a. It's not the same field we're stacking on AND
187187
//2b. It's not a quantitative field used for measurement
188188
const isQuantitativeDimension = isUnbinnedQuantitative(dimensionDef);
189-
const shouldAddGroupBy = (!didDisableImpute && shouldAutoImpute) && (!hasSameDimensionAndStackedField && !isQuantitativeDimension);
189+
const shouldAddGroupBy =
190+
!didDisableImpute && shouldAutoImpute && !hasSameDimensionAndStackedField && !isQuantitativeDimension;
190191

191192
if (shouldAddGroupBy) {
192193
groupbyChannels.push(dimensionChannel);

0 commit comments

Comments
 (0)