Merge pull request #903 from mattermost/PLT-44

PLT-44 allow team switching without the need to login
Этот коммит содержится в:
Christopher Speller
2015-10-05 10:20:14 -04:00
родитель 8595fd85c7 3b34e73132
Коммит f4afabd679
9 изменённых файлов: 127 добавлений и 25 удалений

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

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