mirror of
https://github.com/ansible/awx.git
synced 2026-03-05 02:31:03 -03:30
Merge pull request #4919 from chrismeyersfsu/fix-4698
more correctly handle notification email list
This commit is contained in:
@@ -94,7 +94,7 @@ export default ['Rest', 'Wait',
|
|||||||
if (form.fields[fld].name === 'headers') {
|
if (form.fields[fld].name === 'headers') {
|
||||||
$scope[fld] = JSON.stringify($scope[fld], null, 2);
|
$scope[fld] = JSON.stringify($scope[fld], null, 2);
|
||||||
} else {
|
} else {
|
||||||
$scope[fld] = $scope[fld].toString().replace(/,/g, '\n');
|
$scope[fld] = $scope[fld].join('\n');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user