KEYCLOAK-5935: No success msg on client role add/remove

This commit is contained in:
Stan Silvert 2017-12-15 08:49:18 -05:00
parent e4a91c0706
commit a719b73808

View file

@ -854,6 +854,7 @@ function roleControl($scope, realm, role, roles, clients,
}
}
$scope.selectedClientRoles = [];
Notifications.success("Client role added.");
});
};
@ -870,6 +871,7 @@ function roleControl($scope, realm, role, roles, clients,
}
}
$scope.selectedClientMappings = [];
Notifications.success("Client role removed.");
});
};