You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ra...@apache.org on 2022/09/06 15:34:57 UTC

[trafficcontrol] branch master updated: adds a link to documentation when creating a ds and selecting content routing type (#7058)

This is an automated email from the ASF dual-hosted git repository.

rawlin 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 720faa0224 adds a link to documentation when creating a ds and selecting content routing type (#7058)
720faa0224 is described below

commit 720faa02240ae2d4186fe6b31c4e82b255ada728
Author: Jeremy Mitchell <mi...@users.noreply.github.com>
AuthorDate: Tue Sep 6 09:34:50 2022 -0600

    adds a link to documentation when creating a ds and selecting content routing type (#7058)
---
 .../modules/table/deliveryServices/TableDeliveryServicesController.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/traffic_portal/app/src/common/modules/table/deliveryServices/TableDeliveryServicesController.js b/traffic_portal/app/src/common/modules/table/deliveryServices/TableDeliveryServicesController.js
index 5ef3e1b25c..8aa1bf1a4b 100644
--- a/traffic_portal/app/src/common/modules/table/deliveryServices/TableDeliveryServicesController.js
+++ b/traffic_portal/app/src/common/modules/table/deliveryServices/TableDeliveryServicesController.js
@@ -370,7 +370,7 @@ function TableDeliveryServicesController(tableName, deliveryServices, $anchorScr
 	async function clone(ds) {
 		const params = {
 			title: `Clone Delivery Service: ${ds.xmlId}`,
-			message: "Please select a content routing category for the clone"
+			message: "Please select a <a href='https://traffic-control-cdn.readthedocs.io/en/latest/overview/delivery_services.html#ds-types' target='_blank'>content routing category</a> for the clone"
 		};
 
 		const modalInstance = $uibModal.open({
@@ -535,7 +535,7 @@ function TableDeliveryServicesController(tableName, deliveryServices, $anchorScr
 	async function selectDSType() {
 		const params = {
 			title: "Create Delivery Service",
-			message: "Please select a content routing category"
+			message: "Please select a <a href='https://traffic-control-cdn.readthedocs.io/en/latest/overview/delivery_services.html#ds-types' target='_blank'>content routing category</a>"
 		};
 		const modalInstance = $uibModal.open({
 			templateUrl: 'common/modules/dialog/select/dialog.select.tpl.html',