aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/Sidebar.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout/Sidebar.js')
-rw-r--r--src/components/layout/Sidebar.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index 728613f42..4f67a8719 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -66,8 +66,6 @@ const messages = defineMessages({
66 }, 66 },
67}); 67});
68 68
69@inject('stores', 'actions')
70@observer
71class Sidebar extends Component { 69class Sidebar extends Component {
72 static propTypes = { 70 static propTypes = {
73 openSettings: PropTypes.func.isRequired, 71 openSettings: PropTypes.func.isRequired,
@@ -262,4 +260,4 @@ class Sidebar extends Component {
262 } 260 }
263} 261}
264 262
265export default injectIntl(Sidebar); 263export default injectIntl(inject('stores', 'actions')(observer(Sidebar)));