summaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-23 11:34:16 +0100
committerLibravatar GitHub <noreply@github.com>2017-11-23 11:34:16 +0100
commit0f9b16983b9b25964906700999afc8bb451bca92 (patch)
tree77b70cfe381ef5661962350286395e4ed2494479 /src/components
parentMerge pull request #327 from BeneStem/master (diff)
parentRemove flow types (diff)
downloadferdium-app-0f9b16983b9b25964906700999afc8bb451bca92.tar.gz
ferdium-app-0f9b16983b9b25964906700999afc8bb451bca92.tar.zst
ferdium-app-0f9b16983b9b25964906700999afc8bb451bca92.zip
Merge pull request #329 from meetfranz/feature/beta-14-bugfixing
[PR] Beta 14 bugfixing
Diffstat (limited to 'src/components')
-rw-r--r--src/components/layout/Sidebar.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index ea34e8702..cb2ecc8ce 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -2,6 +2,7 @@ import React, { Component } from 'react';
2import PropTypes from 'prop-types'; 2import PropTypes from 'prop-types';
3import ReactTooltip from 'react-tooltip'; 3import ReactTooltip from 'react-tooltip';
4import { defineMessages, intlShape } from 'react-intl'; 4import { defineMessages, intlShape } from 'react-intl';
5import { observer } from 'mobx-react';
5 6
6import Tabbar from '../services/tabs/Tabbar'; 7import Tabbar from '../services/tabs/Tabbar';
7import { ctrlKey } from '../../environment'; 8import { ctrlKey } from '../../environment';
@@ -25,6 +26,7 @@ const messages = defineMessages({
25 }, 26 },
26}); 27});
27 28
29@observer
28export default class Sidebar extends Component { 30export default class Sidebar extends Component {
29 static propTypes = { 31 static propTypes = {
30 openSettings: PropTypes.func.isRequired, 32 openSettings: PropTypes.func.isRequired,