fix(ui) - team page title
This commit is contained in:
parent
c6158dbe29
commit
fa87fa3c5f
1 changed files with 2 additions and 1 deletions
|
|
@ -8,6 +8,7 @@ import { useModal } from 'App/components/Modal';
|
||||||
import UserForm from './components/UserForm';
|
import UserForm from './components/UserForm';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import AddUserButton from './components/AddUserButton';
|
import AddUserButton from './components/AddUserButton';
|
||||||
|
import withPageTitle from 'HOCs/withPageTitle';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isOnboarding?: boolean;
|
isOnboarding?: boolean;
|
||||||
|
|
@ -57,4 +58,4 @@ function UsersView(props: Props) {
|
||||||
export default connect((state: any) => ({
|
export default connect((state: any) => ({
|
||||||
account: state.getIn(['user', 'account']),
|
account: state.getIn(['user', 'account']),
|
||||||
isEnterprise: state.getIn(['user', 'account', 'edition']) === 'ee',
|
isEnterprise: state.getIn(['user', 'account', 'edition']) === 'ee',
|
||||||
}))(UsersView);
|
}))(withPageTitle('Team - OpenReplay Preferences')(UsersView));
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue