Skip to content

Commit 5917b57

Browse files
author
Corey Robertson
authored
Exclude variables from rendered workpad (#72970) (#73206)
1 parent 26fdc46 commit 5917b57

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugins/canvas/public/state/selectors

1 file changed

+1
-1
lines changed

x-pack/plugins/canvas/public/state/selectors/workpad.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ export function getRenderedWorkpad(state: State) {
497497
const workpad = getWorkpad(state);
498498

499499
// eslint-disable-next-line no-unused-vars
500-
const { pages, ...rest } = workpad;
500+
const { pages, variables, ...rest } = workpad;
501501

502502
return {
503503
pages: renderedPages,

0 commit comments

Comments
 (0)