mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
Merge pull request #4781 from chrismeyersfsu/fix-4698
replace all instances of , with \n
This commit is contained in:
commit
942a3eb99d
@ -94,7 +94,7 @@ export default ['Rest', 'Wait',
|
||||
if (form.fields[fld].name === 'headers') {
|
||||
$scope[fld] = JSON.stringify($scope[fld], null, 2);
|
||||
} else {
|
||||
$scope[fld] = $scope[fld].toString().replace(',', '\n');
|
||||
$scope[fld] = $scope[fld].toString().replace(/,/g, '\n');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user