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 16314f7 commit c9cbe06Copy full SHA for c9cbe06
js/vegaexpr.ts
@@ -15,8 +15,9 @@ 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 =
19
- vegaFunctions.functionContext.format.bind(dataflow);
+vegaFunctions.functionContext.format = vegaFunctions.functionContext.format.bind(
+ dataflow
20
+);
21
22
export class VegaExprModel extends WidgetModel {
23
defaults() {
0 commit comments