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