summaryrefslogtreecommitdiffstats
path: root/webapp/components/analytics/team_analytics/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/analytics/team_analytics/index.js')
-rw-r--r--webapp/components/analytics/team_analytics/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/analytics/team_analytics/index.js b/webapp/components/analytics/team_analytics/index.js
index 0620a8fdb..fe53a1559 100644
--- a/webapp/components/analytics/team_analytics/index.js
+++ b/webapp/components/analytics/team_analytics/index.js
@@ -4,6 +4,7 @@
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {getTeams} from 'mattermost-redux/actions/teams';
+import {getProfilesInTeam} from 'mattermost-redux/actions/users';
import {getTeamsList} from 'mattermost-redux/selectors/entities/teams';
import BrowserStore from 'stores/browser_store.jsx';
@@ -26,7 +27,8 @@ function mapStateToProps(state, ownProps) {
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
- getTeams
+ getTeams,
+ getProfilesInTeam
}, dispatch)
};
}