PLT-44 allow team switching without the need to login

Этот коммит содержится в:
=Corey Hulen
2015-10-01 17:52:47 -07:00
родитель 013df9f661
Коммит 430806301d
9 изменённых файлов: 109 добавлений и 15 удалений

Просмотреть файл

@@ -508,6 +508,7 @@ export default class Sidebar extends React.Component {
/>
<SidebarHeader
teamDisplayName={this.props.teamDisplayName}
teamName={this.props.teamName}
teamType={this.props.teamType}
/>
<SearchBox />
@@ -587,5 +588,6 @@ Sidebar.defaultProps = {
};
Sidebar.propTypes = {
teamType: React.PropTypes.string,
teamDisplayName: React.PropTypes.string
teamDisplayName: React.PropTypes.string,
teamName: React.PropTypes.string
};