1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Max host form field tooltip should not enable field

This commit is contained in:
Marliana Lara 2020-02-07 14:30:33 -05:00
parent fd027f87a9
commit 43e1b4a7db
No known key found for this signature in database
GPG Key ID: 38C73B40DFA809EE

View File

@ -4,8 +4,7 @@ import { withRouter } from 'react-router-dom';
import { Formik, Field } from 'formik';
import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import { QuestionCircleIcon } from '@patternfly/react-icons';
import { Tooltip, Form, FormGroup } from '@patternfly/react-core';
import { Form, FormGroup } from '@patternfly/react-core';
import { OrganizationsAPI } from '@api';
import { ConfigContext } from '@contexts/Config';
@ -113,21 +112,12 @@ function OrganizationForm({ organization, i18n, me, onCancel, onSubmit }) {
id="org-max_hosts"
name="max_hosts"
type="number"
label={
<>
{i18n._(t`Max Hosts`)}{' '}
<Tooltip
position="right"
content={i18n._(
label={i18n._(t`Max Hosts`)}
tooltip={i18n._(
t`The maximum number of hosts allowed to be managed by this organization.
Value defaults to 0 which means no limit. Refer to the Ansible
documentation for more details.`
)}
>
<QuestionCircleIcon />
</Tooltip>
</>
}
validate={minMaxValue(0, Number.MAX_SAFE_INTEGER, i18n)}
me={me || {}}
isDisabled={!me.is_superuser}