Skip to content

Commit 4e1bd11

Browse files
mengweiericopensearch-trigger-bot[bot]dependabot[bot]zhongnansu
authored
Issue fix not a function error (#739)
* Bump prismjs from 1.25.0 to 1.27.0 in /dashboards-observability (#508) (#574) Bumps [prismjs](https://github.com/PrismJS/prism) from 1.25.0 to 1.27.0. - [Release notes](https://github.com/PrismJS/prism/releases) - [Changelog](https://github.com/PrismJS/prism/blob/master/CHANGELOG.md) - [Commits](PrismJS/prism@v1.25.0...v1.27.0) --- updated-dependencies: - dependency-name: prismjs dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit b4f491a) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * change to support java 8 in compile and runtime (#575) (#576) Signed-off-by: Zhongnan Su <[email protected]> (cherry picked from commit 5c43e9d) Co-authored-by: Zhongnan Su <[email protected]> * Add 1.3.0 release notes (#580) (#582) Signed-off-by: Eugene Lee <[email protected]> * bug fixes Signed-off-by: Eric Wei <[email protected]> Co-authored-by: opensearch-trigger-bot[bot] <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Zhongnan Su <[email protected]>
1 parent 40dff8b commit 4e1bd11

File tree

1 file changed

+3
-1
lines changed
  • dashboards-observability/public/components/custom_panels/panel_modules/panel_grid

1 file changed

+3
-1
lines changed

dashboards-observability/public/components/custom_panels/panel_modules/panel_grid/panel_grid.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,9 @@ export const PanelGrid = (props: PanelGridProps) => {
168168
_.omit(layout, ['static', 'moved'])
169169
);
170170
saveVisualizationLayouts(panelId, visualizationParams);
171-
updateAvailabilityVizId(panelVisualizations);
171+
if (!_.isEmpty(updateAvailabilityVizId)) {
172+
updateAvailabilityVizId(panelVisualizations);
173+
}
172174
}
173175
}, [editActionType]);
174176

0 commit comments

Comments
 (0)