2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-21 17:37:15 +00:00

update text

This commit is contained in:
Aravindh-Raju 2024-10-15 12:33:39 +05:30
parent f742837dfd
commit 7a46369826
No known key found for this signature in database
GPG Key ID: 6B4D566AC36626F6
8 changed files with 8 additions and 8 deletions

View File

@ -43,7 +43,7 @@
<div class="col-md-12">
<p><strong>ID:</strong> {{batch.id}}
<span class="small-copy-button" ng-click="copyToClipboard()"
data-toggle="tooltip" data-placement="top" title="Copy batch id to clipboard">
data-toggle="tooltip" data-placement="top" title="Copy Batch ID to clipboard">
<i class="fa fa-clone"></i>
</span>
<button class="btn-right-corner" ng-click="exportToCSV(batch.id)">Export CSV</button>

View File

@ -114,7 +114,7 @@
<td>
<a href="/dnschanges/{{batchChange.id}}">{{batchChange.id}}</a>
<span class="small-copy-button" ng-click="copyToClipboard(batchChange.id)"
data-toggle="tooltip" data-placement="top" title="Copy batch id to clipboard">
data-toggle="tooltip" data-placement="top" title="Copy Batch ID to clipboard">
<i class="fa fa-clone"></i>
</span>
</td>

View File

@ -34,7 +34,7 @@
</h3>
<p><strong>Group ID:</strong> {{membership.group.id}}
<span class="small-copy-button" ng-click="copyToClipboard()"
data-toggle="tooltip" data-placement="top" title="Copy group id to clipboard">
data-toggle="tooltip" data-placement="top" title="Copy Group ID to clipboard">
<i class="fa fa-clone"></i>
</span>
</p>

View File

@ -34,7 +34,7 @@
<div class="col-md-12">
<p><strong>Zone ID:</strong> {{zoneInfo.id}}
<span class="small-copy-button" ng-click="copyToClipboard()"
data-toggle="tooltip" data-placement="top" title="Copy zone id to clipboard">
data-toggle="tooltip" data-placement="top" title="Copy Zone ID to clipboard">
<i class="fa fa-clone"></i>
</span>
</p>

View File

@ -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);
};

View File

@ -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);
};

View File

@ -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);
};

View File

@ -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);
};