This is an automated email from the ASF dual-hosted git repository.
shamrick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new 4f1988c Fix DSRs not showing TLS version restrictions (#6206)
4f1988c is described below
commit 4f1988c18cc0cf20ec3d28a02e681d95d6fd903f
Author: ocket8888 <[email protected]>
AuthorDate: Tue Sep 14 11:28:59 2021 -0600
Fix DSRs not showing TLS version restrictions (#6206)
---
.../edit/FormEditDeliveryServiceRequestController.js | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/traffic_portal/app/src/modules/private/deliveryServiceRequests/edit/FormEditDeliveryServiceRequestController.js
b/traffic_portal/app/src/modules/private/deliveryServiceRequests/edit/FormEditDeliveryServiceRequestController.js
index 1208169..a29dc3c 100644
---
a/traffic_portal/app/src/modules/private/deliveryServiceRequests/edit/FormEditDeliveryServiceRequestController.js
+++
b/traffic_portal/app/src/modules/private/deliveryServiceRequests/edit/FormEditDeliveryServiceRequestController.js
@@ -26,6 +26,8 @@ var FormEditDeliveryServiceRequestController =
function(deliveryServiceRequest,
$scope.changeType = $scope.dsRequest.changeType;
+ $scope.restrictTLS = ((dsr)=>dsr.tlsVersions instanceof Array &&
dsr.tlsVersions.length > 0)($scope.dsRequest.requested ??
$scope.dsRequest.original);
+
$scope.requestStatus = $scope.dsRequest.status;
$scope.deliveryServiceName = angular.copy(($scope.dsRequest.requested)
? $scope.dsRequest.requested.xmlId : $scope.dsRequest.original.xmlId);