Skip to content

Commit

Permalink
Exclude variables from rendered workpad (#72970) (#73207)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Robertson authored Jul 24, 2020
1 parent de9de1d commit 055d3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/canvas/public/state/selectors/workpad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export function getRenderedWorkpad(state: State) {
const workpad = getWorkpad(state);

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

return {
pages: renderedPages,
Expand Down

0 comments on commit 055d3f2

Please sign in to comment.