mirror of
https://github.com/ansible/awx.git
synced 2026-03-20 18:37:39 -02:30
fixes search and sort
This commit is contained in:
@@ -35,7 +35,7 @@ class Groups extends Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
readChildren(id, params) {
|
readChildren(id, params) {
|
||||||
return this.http.get(`${this.baseUrl}${id}/children/`, params);
|
return this.http.get(`${this.baseUrl}${id}/children/`, { params });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ function AdHocDetailsStep({ i18n, verbosityOptions, moduleOptions }) {
|
|||||||
<FormFullWidthLayout>
|
<FormFullWidthLayout>
|
||||||
<FormGroup
|
<FormGroup
|
||||||
fieldId="module_name"
|
fieldId="module_name"
|
||||||
aria-label={i18n._(t`Module`)}
|
aria-label={i18n._(t`select module`)}
|
||||||
label={i18n._(t`Module`)}
|
label={i18n._(t`Module`)}
|
||||||
isRequired
|
isRequired
|
||||||
helperTextInvalid={moduleNameMeta.error}
|
helperTextInvalid={moduleNameMeta.error}
|
||||||
@@ -136,7 +136,7 @@ function AdHocDetailsStep({ i18n, verbosityOptions, moduleOptions }) {
|
|||||||
/>
|
/>
|
||||||
<FormGroup
|
<FormGroup
|
||||||
fieldId="verbosity"
|
fieldId="verbosity"
|
||||||
aria-label={i18n._(t`Verbosity`)}
|
aria-label={i18n._(t`select verbosity`)}
|
||||||
label={i18n._(t`Verbosity`)}
|
label={i18n._(t`Verbosity`)}
|
||||||
isRequired
|
isRequired
|
||||||
validated={
|
validated={
|
||||||
|
|||||||
@@ -79,11 +79,12 @@ function DisassociateButton({
|
|||||||
{isKebabified ? (
|
{isKebabified ? (
|
||||||
<DropdownItem
|
<DropdownItem
|
||||||
key="add"
|
key="add"
|
||||||
|
aria-label={i18n._(t`disassociate`)}
|
||||||
isDisabled={isDisabled}
|
isDisabled={isDisabled}
|
||||||
component="button"
|
component="button"
|
||||||
onClick={() => setIsOpen(true)}
|
onClick={() => setIsOpen(true)}
|
||||||
>
|
>
|
||||||
{i18n._(t`Delete`)}
|
{i18n._(t`Disassociate`)}
|
||||||
</DropdownItem>
|
</DropdownItem>
|
||||||
) : (
|
) : (
|
||||||
<Tooltip content={renderTooltip()} position="top">
|
<Tooltip content={renderTooltip()} position="top">
|
||||||
|
|||||||
Reference in New Issue
Block a user