diff --git a/modules/portal/app/views/dnsChanges/dnsChangeDetail.scala.html b/modules/portal/app/views/dnsChanges/dnsChangeDetail.scala.html index 42128e02f..7056936c5 100644 --- a/modules/portal/app/views/dnsChanges/dnsChangeDetail.scala.html +++ b/modules/portal/app/views/dnsChanges/dnsChangeDetail.scala.html @@ -43,7 +43,7 @@
ID: {{batch.id}}
diff --git a/modules/portal/app/views/dnsChanges/dnsChanges.scala.html b/modules/portal/app/views/dnsChanges/dnsChanges.scala.html index 95c339f7c..ba7177fe8 100644 --- a/modules/portal/app/views/dnsChanges/dnsChanges.scala.html +++ b/modules/portal/app/views/dnsChanges/dnsChanges.scala.html @@ -114,7 +114,7 @@Group ID: {{membership.group.id}}
diff --git a/modules/portal/app/views/zones/zoneDetail.scala.html b/modules/portal/app/views/zones/zoneDetail.scala.html index 5d9c0c426..489cdfb52 100644 --- a/modules/portal/app/views/zones/zoneDetail.scala.html +++ b/modules/portal/app/views/zones/zoneDetail.scala.html @@ -34,7 +34,7 @@Zone ID: {{zoneInfo.id}}
diff --git a/modules/portal/public/lib/controllers/controller.membership.js b/modules/portal/public/lib/controllers/controller.membership.js index d974ca4ad..80b1bf424 100644 --- a/modules/portal/public/lib/controllers/controller.membership.js +++ b/modules/portal/public/lib/controllers/controller.membership.js @@ -50,7 +50,7 @@ angular.module('controller.membership', []).controller('MembershipController', f $scope.copyToClipboard = function() { utilityService.copyToClipboard($scope.membership.group.id); // Trigger success alert using utilityService - var alert = utilityService.success('Successfully copied group id to clipboard'); + var alert = utilityService.success('Successfully copied Group ID to clipboard'); $scope.alerts.push(alert); }; diff --git a/modules/portal/public/lib/controllers/controller.records.js b/modules/portal/public/lib/controllers/controller.records.js index 6cf94575f..5e5e50b77 100644 --- a/modules/portal/public/lib/controllers/controller.records.js +++ b/modules/portal/public/lib/controllers/controller.records.js @@ -108,7 +108,7 @@ angular.module('controller.records', []) $scope.copyToClipboard = function() { utilityService.copyToClipboard($scope.zoneInfo.id); // Trigger success alert using utilityService - var alert = utilityService.success('Successfully copied zone id to clipboard'); + var alert = utilityService.success('Successfully copied Zone ID to clipboard'); $scope.alerts.push(alert); }; diff --git a/modules/portal/public/lib/dns-change/dns-change-detail.controller.js b/modules/portal/public/lib/dns-change/dns-change-detail.controller.js index 8affcb956..580cb5ecb 100644 --- a/modules/portal/public/lib/dns-change/dns-change-detail.controller.js +++ b/modules/portal/public/lib/dns-change/dns-change-detail.controller.js @@ -35,7 +35,7 @@ $scope.copyToClipboard = function() { utilityService.copyToClipboard($scope.batch.id); // Trigger success alert using utilityService - var alert = utilityService.success('Successfully copied batch id to clipboard'); + var alert = utilityService.success('Successfully copied Batch ID to clipboard'); $scope.alerts.push(alert); }; diff --git a/modules/portal/public/lib/dns-change/dns-changes.controller.js b/modules/portal/public/lib/dns-change/dns-changes.controller.js index af121ac58..e80b5e227 100644 --- a/modules/portal/public/lib/dns-change/dns-changes.controller.js +++ b/modules/portal/public/lib/dns-change/dns-changes.controller.js @@ -59,7 +59,7 @@ $scope.copyToClipboard = function(copyText) { utilityService.copyToClipboard(copyText); // Trigger success alert using utilityService - var alert = utilityService.success('Successfully copied batch id to clipboard'); + var alert = utilityService.success('Successfully copied Batch ID to clipboard'); $scope.alerts.push(alert); };