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