Skip to content

Commit

Permalink
Fixes elastic#42519 dashboard migration bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolf committed Aug 2, 2019
1 parent 658ee17 commit 679d15f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function migrate610PanelToLatest(
}
});

const embeddableConfig = uiState ? uiState[`P-${panel.panelIndex}`] : {};
const embeddableConfig = uiState ? uiState[`P-${panel.panelIndex}`] || {} : {};

// 2. (6.4) remove columns, sort properties
if (panel.columns || panel.sort) {
Expand Down

0 comments on commit 679d15f

Please sign in to comment.