Merge pull request #4919 from chrismeyersfsu/fix-4698

more correctly handle notification email list
This commit is contained in:
Chris Meyers 2017-01-25 09:57:00 -05:00 committed by GitHub
commit dff41bf035

View File

@ -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(/,/g, '\n');
$scope[fld] = $scope[fld].join('\n');
}
}
}