mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
Replace modal title underscore with a space
This commit is contained in:
parent
3450937329
commit
d5d8d2f3a7
@ -37,6 +37,8 @@ export default ['templateUrl', function(templateUrl) {
|
||||
$scope.$watch(list.name, function(){
|
||||
selectRowIfPresent();
|
||||
});
|
||||
|
||||
$scope.modalTitle = list.iterator.replace(/_/g, ' ');
|
||||
};
|
||||
|
||||
function selectRowIfPresent(){
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header Form-header">
|
||||
<div class="Form-title Form-title--uppercase">Select {{list.iterator}}</div>
|
||||
<div class="Form-title Form-title--uppercase">Select {{modalTitle}}</div>
|
||||
<!-- optional: transclude header fields -->
|
||||
<div class="Form-header--fields"></div>
|
||||
<div class="Form-exitHolder">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user