From 0506968d4fb9b6651f604c2a798b23d8266780d1 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 13 Nov 2018 12:14:24 -0500 Subject: [PATCH] Fix tooltip referring to PROJECTS_ROOT. This can't be changed in AWX settings; it needs to be done in settings.py either on the filesystem, or overridden in a k8s/openshift configmap. --- awx/ui/client/src/projects/projects.form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/projects/projects.form.js b/awx/ui/client/src/projects/projects.form.js index c6315ab954..992604db78 100644 --- a/awx/ui/client/src/projects/projects.form.js +++ b/awx/ui/client/src/projects/projects.form.js @@ -80,7 +80,7 @@ export default ['i18n', 'NotificationsList', 'TemplateList', ngShow: "scm_type.value == 'manual' " , awPopOver: '

' + i18n._('Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. ' + 'Together the base path and selected playbook directory provide the full path used to locate playbooks.') + '

' + - '

' + i18n.sprintf(i18n._('Change %s under "Configure {{BRAND_NAME}}" to change this location.'), 'PROJECTS_ROOT') + '

', + '

' + i18n.sprintf(i18n._('Change %s when deploying {{BRAND_NAME}} to change this location.'), 'PROJECTS_ROOT') + '

', dataTitle: i18n._('Project Base Path'), dataContainer: 'body', dataPlacement: 'right',