diff --git a/awx/ui/client/src/credential-types/credential-types.form.js b/awx/ui/client/src/credential-types/credential-types.form.js index a933545fe7..fdc3963e0b 100644 --- a/awx/ui/client/src/credential-types/credential-types.form.js +++ b/awx/ui/client/src/credential-types/credential-types.form.js @@ -43,14 +43,7 @@ export default ['i18n', function(i18n) { default: '---', showParseTypeToggle: true, parseTypeName: 'parseTypeInputs', - awPopOver: "
Enter inputs using either JSON or YAML syntax. Use the " + - "radio button to toggle between the two.
" + - "JSON:{\n" + - "YAML:
\"somevar\": \"somevalue\",
\"password\": \"magic\"
}
---\n" + - '
somevar: somevalue
password: magic
View JSON examples at www.json.org
' + - 'View YAML examples at docs.ansible.com
', + awPopOver: i18n._("Enter inputs using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."), dataTitle: i18n._('Input Configuration'), dataPlacement: 'right', dataContainer: "body", @@ -64,14 +57,7 @@ export default ['i18n', function(i18n) { default: '---', showParseTypeToggle: true, parseTypeName: 'parseTypeInjectors', - awPopOver: "Enter injectors using either JSON or YAML syntax. Use the " + - "radio button to toggle between the two.
" + - "JSON:{\n" + - "YAML:
\"somevar\": \"somevalue\",
\"password\": \"magic\"
}
---\n" + - '
somevar: somevalue
password: magic
View JSON examples at www.json.org
' + - 'View YAML examples at docs.ansible.com
', + awPopOver: i18n._("Enter injectors using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."), dataTitle: i18n._('Injector Configuration'), dataPlacement: 'right', dataContainer: "body", diff --git a/awx/ui/client/src/credential-types/credential-types.list.js b/awx/ui/client/src/credential-types/credential-types.list.js index 2e70ad9280..0a50c6de75 100644 --- a/awx/ui/client/src/credential-types/credential-types.list.js +++ b/awx/ui/client/src/credential-types/credential-types.list.js @@ -14,6 +14,9 @@ export default ['i18n', function(i18n){ iterator: 'credential_type', index: false, hover: false, + search: { + managed_by_tower: 'false' + }, fields: { name: { @@ -25,7 +28,7 @@ export default ['i18n', function(i18n){ dataPlacement: 'top' }, kind: { - label: i18n._('Type'), + label: i18n._('Kind'), ngBind: 'credential_type.kind_label', excludeModal: true, columnClass: 'col-md-2 hidden-sm hidden-xs'