Fixing typo
This commit is contained in:
parent
142b155460
commit
bb7a809ab5
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ module.controller('OAuthClientDetailCtrl', function($scope, realm, oauth, OAuthC
|
||||||
}
|
}
|
||||||
|
|
||||||
$scope.save = function() {
|
$scope.save = function() {
|
||||||
if (!$scope.oauth.bearerOnly && (!$scope.oauth.redirectUris || $scope.oauth.redirectUris.length == 0)) {
|
if (!$scope.oauth.redirectUris || $scope.oauth.redirectUris.length == 0) {
|
||||||
Notifications.error("You must specify at least one redirect uri");
|
Notifications.error("You must specify at least one redirect uri");
|
||||||
} else {
|
} else {
|
||||||
if ($scope.create) {
|
if ($scope.create) {
|
||||||
|
|
Loading…
Reference in a new issue