Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
Signed-off-by: abbyhu2000 <abigailhu2000@gmail.com>
  • Loading branch information
abbyhu2000 committed Oct 3, 2022
1 parent 9f88aaa commit 2de1e1f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

* Add updated_at column to objects' tables ([#1218](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/1218))
* [Viz Builder] State validation before dispatching and loading ([#2351](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2351))
* [Viz Builder] Create a new wizard directly on a dashboard ([#2384](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2384))

### 🐛 Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion config/opensearch_dashboards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,4 @@

# Set the value of this setting to true to start exploring wizard
# functionality in Visualization.
wizard.enabled: true
# wizard.enabled: false
10 changes: 9 additions & 1 deletion src/plugins/wizard/public/application/components/top_nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,15 @@ export const TopNav = () => {
};

setConfig(getConfig());
}, [rootState, savedWizardVis, services, visualizationIdFromUrl, saveDisabledReason, dispatch, indexPattern]);
}, [
rootState,
savedWizardVis,
services,
visualizationIdFromUrl,
saveDisabledReason,
dispatch,
indexPattern,
]);

// reset validity before component destroyed
useUnmount(() => {
Expand Down

0 comments on commit 2de1e1f

Please sign in to comment.