KEYCLOAK-2252
Cannot delete client mapper with delete icon
This commit is contained in:
parent
77962ec896
commit
65f5ce9f13
1 changed files with 1 additions and 1 deletions
|
@ -1627,7 +1627,7 @@ module.controller('ClientProtocolMapperCtrl', function($scope, realm, serverInfo
|
|||
};
|
||||
|
||||
$scope.remove = function() {
|
||||
Dialog.confirmDelete($scope.mapper.name, 'mapper', function() {
|
||||
Dialog.confirmDelete($scope.model.mapper.name, 'mapper', function() {
|
||||
ClientProtocolMapper.remove({ realm: realm.realm, client: client.id, id : $scope.model.mapper.id }, function() {
|
||||
Notifications.success("The mapper has been deleted.");
|
||||
$location.url("/realms/" + realm.realm + '/clients/' + client.id + "/mappers");
|
||||
|
|
Loading…
Reference in a new issue