diff --git a/ui/src/admin/components/chronograf/AllUsersTable.js b/ui/src/admin/components/chronograf/AllUsersTable.js index 55af528806..4a61873fe3 100644 --- a/ui/src/admin/components/chronograf/AllUsersTable.js +++ b/ui/src/admin/components/chronograf/AllUsersTable.js @@ -3,6 +3,7 @@ import React, {Component, PropTypes} from 'react' import _ from 'lodash' import {DEFAULT_ORG, NO_ORG} from 'src/admin/constants/dummyUsers' +import {USERS_TABLE} from 'src/admin/constants/chronografTableSizing' class ChronografAllUsersTable extends Component { constructor(props) { @@ -47,7 +48,12 @@ class ChronografAllUsersTable extends Component { ) return ( - {currentOrg.organizationName} + + {currentOrg.organizationName} + ) } @@ -82,6 +88,7 @@ class ChronografAllUsersTable extends Component { ) } renderTableRows = filteredUsers => { + const {colOrg, colRole, colSuperAdmin, colProvider, colScheme} = USERS_TABLE const {onToggleUserSelected, selectedUsers, isSameUser} = this.props return filteredUsers.map((user, i) => { @@ -102,19 +109,19 @@ class ChronografAllUsersTable extends Component { {user.name} -