diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/components/UserForm.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/components/UserForm.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/UserForm.tsx b/server/sonar-web/src/main/js/apps/users/components/UserForm.tsx index a96a27ea7c0..e5ec88fab7c 100644 --- a/server/sonar-web/src/main/js/apps/users/components/UserForm.tsx +++ b/server/sonar-web/src/main/js/apps/users/components/UserForm.tsx @@ -153,7 +153,7 @@ export default class UserForm extends React.PureComponent<Props, State> { const header = user ? translate('users.update_user') : translate('users.create_user'); return ( - <Modal contentLabel={header} onRequestClose={this.props.onClose}> + <Modal contentLabel={header} onRequestClose={this.props.onClose} size="small"> <form autoComplete="off" id="user-form" |