We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05280d6 commit 3958245Copy full SHA for 3958245
packages/scenes/src/variables/groupby/GroupByVariable.tsx
@@ -342,7 +342,7 @@ export function GroupByVariableRenderer({ model }: SceneComponentProps<MultiValu
342
}
343
if (newValue?.value) {
344
setUncommittedValue([newValue]);
345
- model.changeValueTo(newValue.value, newValue.label);
+ model.changeValueTo([newValue.value], newValue.label ? [newValue.label] : undefined);
346
347
}}
348
onOpenMenu={async () => {
0 commit comments