We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d73440 commit c1460beCopy full SHA for c1460be
js/vegaexpr.ts
@@ -15,9 +15,8 @@ import { MODULE_NAME, MODULE_VERSION } from './version';
15
// manually create and bind that locale context to the format function.
16
const locale = vegaFormat.defaultLocale();
17
const dataflow = { context: { dataflow: { locale: () => locale } } };
18
-vegaFunctions.functionContext.format = vegaFunctions.functionContext.format.bind(
19
- dataflow,
20
-);
+vegaFunctions.functionContext.format =
+ vegaFunctions.functionContext.format.bind(dataflow);
21
22
export class VegaExprModel extends WidgetModel {
23
defaults() {
0 commit comments