2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-31 22:35:19 +00:00

fix zonechange history bug

This commit is contained in:
Aravindh-Raju
2023-02-27 12:08:06 +05:30
parent 8d2d13dec8
commit 59cdf92890
2 changed files with 6 additions and 3 deletions

View File

@@ -391,7 +391,6 @@ angular.module('controller.manageZones', ['angular-cron-jobs'])
/**
* Get User name and Group Name with Ids for Zone history
*/
function getZoneGroup(groupId, length) {
function success(response) {
$log.log('groupsService::getZoneGroup-success');
@@ -401,7 +400,8 @@ angular.module('controller.manageZones', ['angular-cron-jobs'])
.getGroup(groupId)
.then(success)
.catch(function (error) {
handleError(error, 'groupsService::getZoneGroup-failure');
$scope.zoneChanges[length].zone.adminGroupName = undefined;
$log.warn(error, 'groupsService::getZoneGroup-failure');
});
}