@eeacms/volto-clms-theme 1.0.154 → 1.0.155
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.0.155](https://github.com/eea/volto-clms-theme/compare/1.0.154...1.0.155) - 12 December 2022
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix:remove withRouter to avoid updating listing inside tabs [ionlizarazu - [`555ce4e`](https://github.com/eea/volto-clms-theme/commit/555ce4ed57d2c6653077bb5f3c9ba45bdfc10326)]
|
|
12
|
+
|
|
7
13
|
### [1.0.154](https://github.com/eea/volto-clms-theme/compare/1.0.153...1.0.154) - 6 December 2022
|
|
8
14
|
|
|
9
15
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { connect } from 'react-redux';
|
|
3
|
-
import { withRouter } from 'react-router';
|
|
3
|
+
// import { withRouter } from 'react-router';
|
|
4
4
|
import { NavLink, Route } from 'react-router-dom';
|
|
5
5
|
import { compose } from 'redux';
|
|
6
6
|
|
|
@@ -120,4 +120,4 @@ export default compose(
|
|
|
120
120
|
};
|
|
121
121
|
}),
|
|
122
122
|
withScrollToTarget,
|
|
123
|
-
)(
|
|
123
|
+
)(CclVerticalTabsView);
|