summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar_right_menu.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/sidebar_right_menu.jsx')
-rw-r--r--webapp/components/sidebar_right_menu.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/webapp/components/sidebar_right_menu.jsx b/webapp/components/sidebar_right_menu.jsx
index aac7d58cc..10f6bd7a5 100644
--- a/webapp/components/sidebar_right_menu.jsx
+++ b/webapp/components/sidebar_right_menu.jsx
@@ -28,6 +28,8 @@ import {FormattedMessage} from 'react-intl';
import {Link} from 'react-router/es6';
import {createMenuTip} from 'components/tutorial/tutorial_tip.jsx';
+import PropTypes from 'prop-types';
+
import React from 'react';
export default class SidebarRightMenu extends React.Component {
@@ -527,6 +529,6 @@ export default class SidebarRightMenu extends React.Component {
}
SidebarRightMenu.propTypes = {
- teamType: React.PropTypes.string,
- teamDisplayName: React.PropTypes.string
+ teamType: PropTypes.string,
+ teamDisplayName: PropTypes.string
};