diff --git a/CHANGELOG.md b/CHANGELOG.md
index 72ab3e95..b421f6e4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@ Adjusted `package.json`, `.gitignore`, `.vscode/launch.js` and GitHub workflow f
- [#125](https://github.com/equinor/webviz-core-components/pull/125) - Introduced `DefaultPropsHelper.ts` in order to account for coexistence of TypeScript restrictions and `React`'s `defaultProps`.
- [#125](https://github.com/equinor/webviz-core-components/pull/125) - `setup.py` is now reading package data from `package.json` file inside `webviz_core_components`.
- [#121](https://github.com/equinor/webviz-core-components/pull/121) - Changed rendering of `SmartNodeSelector` component when only one node can be selected.
+- [#136](https://github.com/equinor/webviz-core-components/pull/136) - Changes to selected tags in `SmartNodeSelector` are now always sent.
### Added
- [#125](https://github.com/equinor/webviz-core-components/pull/125) - Added `Storybook` for demo of components.
@@ -26,6 +27,8 @@ Adjusted `package.json`, `.gitignore`, `.vscode/launch.js` and GitHub workflow f
- [#130](https://github.com/equinor/webviz-core-components/pull/130) - Added feedback button to `WebvizPluginPlaceholder`. Added `href` and `target` properties to `WebvizToolbarButton`.
### Fixed
+- [#136](https://github.com/equinor/webviz-core-components/pull/136) - Several bug fixes in `SmartNodeSelector` (exception on entering invalid node name when no metadata given, exception on using several wildcards,
+new tag when pressing enter with single node selection and invalid data, node selected several times when its name is partly contained in other nodes, exception on holding backspace pressed).
- [#125](https://github.com/equinor/webviz-core-components/pull/125) - Removed `selectedNodes` attribute from `SmartNodeSelector` arguments in `usage.py`.
- [#124](https://github.com/equinor/webviz-core-components/pull/124) - `SmartNodeSelector` now returns all selected tags (also invalid and duplicate ones) to parent.
- [#123](https://github.com/equinor/webviz-core-components/pull/123) - Removed unused variables and added types to `SmartNodeSelector` and its tests.
diff --git a/react/src/demo/App.tsx b/react/src/demo/App.tsx
index fe534c12..19bd63fc 100644
--- a/react/src/demo/App.tsx
+++ b/react/src/demo/App.tsx
@@ -210,6 +210,13 @@ class App extends Component {
{this.state.selectedNodes.length == 0 && (
None
)}
+
Selected tags:
+ {this.state.selectedTags.length > 0 && this.state.selectedTags.map((tag, index) => (
+