diff --git a/frontend/src/lib/components/apps/components/display/VegaLiteHtml.svelte b/frontend/src/lib/components/apps/components/display/VegaLiteHtml.svelte index bd8fc70ff0..7957beeeda 100644 --- a/frontend/src/lib/components/apps/components/display/VegaLiteHtml.svelte +++ b/frontend/src/lib/components/apps/components/display/VegaLiteHtml.svelte @@ -52,7 +52,7 @@ actions: false, renderer: canvas ? 'canvas' : 'svg', height: h - 75, - width: w - 75 + width: w - 100 } ) diff --git a/frontend/src/lib/components/flows/previousResults.ts b/frontend/src/lib/components/flows/previousResults.ts index 6b1359c6c0..f9ff6fc791 100644 --- a/frontend/src/lib/components/flows/previousResults.ts +++ b/frontend/src/lib/components/flows/previousResults.ts @@ -108,6 +108,7 @@ export function getAllModules(flow: Flow): FlowModule[] { ].flat() return modules } + function getExpr(x: InputTransform | undefined) { if (x == undefined) return [] return x.type === 'javascript' ? [x.expr] : [] @@ -148,6 +149,7 @@ export function getDependentComponents(id: string, flow: Flow): Record x[1].length > 0) ) } + export function getStepPropPicker( flowState: FlowState, parentModule: FlowModule | undefined,