diff --git a/awx/ui/client/src/job-templates/labels/labelsList.directive.js b/awx/ui/client/src/job-templates/labels/labelsList.directive.js
index 8daec58f2b..bb1a825273 100644
--- a/awx/ui/client/src/job-templates/labels/labelsList.directive.js
+++ b/awx/ui/client/src/job-templates/labels/labelsList.directive.js
@@ -67,7 +67,7 @@ export default
};
Prompt({
- hdr: 'Remove Label from ' + templateName + "",
+ hdr: 'Remove Label from ' + templateName ,
body: '
Confirm the removal of the ' + $filter('sanitize')(labelName) + ' label.
',
action: action,
actionText: 'REMOVE'
diff --git a/awx/ui/client/src/shared/modal/modal.less b/awx/ui/client/src/shared/modal/modal.less
index 9d67dba204..59c6245d86 100644
--- a/awx/ui/client/src/shared/modal/modal.less
+++ b/awx/ui/client/src/shared/modal/modal.less
@@ -22,7 +22,8 @@
color: @list-header-txt;
font-size: 14px;
font-weight: bold;
- white-space: nowrap;
+ width: calc(100%-18px);
+ word-break: break-word;
}
.Modal-exitHolder{
diff --git a/awx/ui/client/src/shared/prompt/prompt.less b/awx/ui/client/src/shared/prompt/prompt.less
index 00ac7898b0..b4c1237c50 100644
--- a/awx/ui/client/src/shared/prompt/prompt.less
+++ b/awx/ui/client/src/shared/prompt/prompt.less
@@ -1,9 +1,5 @@
@import "awx/ui/client/src/shared/branding/colors.default.less";
-.Prompt-titleTarget {
- word-break: break-word;
-}
-
.Prompt-bodyQuery {
margin-bottom: 20px;
color: @default-interface-txt;