From 4b41e86e75ffacac51bf604ba5c185046fe276f1 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Wed, 10 Jun 2015 13:24:12 -0400 Subject: [PATCH] fixed spacing of help text on missing playbooks alert --- awx/ui/static/js/forms/Projects.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/static/js/forms/Projects.js b/awx/ui/static/js/forms/Projects.js index db4dd16b41..d84fc4fbf5 100644 --- a/awx/ui/static/js/forms/Projects.js +++ b/awx/ui/static/js/forms/Projects.js @@ -93,8 +93,8 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition']) type: 'alertblock', "class": 'alert-info', ngShow: "showMissingPlaybooksAlert && scm_type.value == 'manual'", - alertTxt: '

WARNING: There are no available playbook directories in {{ base_dir }}.' + - 'Either that directory is empty, or all of the contents are already assigned to other projects.' + + alertTxt: '

WARNING: There are no available playbook directories in {{ base_dir }}. ' + + 'Either that directory is empty, or all of the contents are already assigned to other projects. ' + 'Create a new directory there and make sure the playbook files can be read by the "awx" system user, ' + 'or have Tower directly retrieve your playbooks from source control using the SCM Type option above.

', closeable: false