Skip to content

Commit

Permalink
Exclude variables from rendered workpad (elastic#72970)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Robertson committed Jul 24, 2020
1 parent 26fdc46 commit 73d8324
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 73d8324

Please sign in to comment.