diff --git a/dashboard/src/views/oidc.js b/dashboard/src/views/oidc.js index 69d6087e0..0b713a23a 100644 --- a/dashboard/src/views/oidc.js +++ b/dashboard/src/views/oidc.js @@ -14,7 +14,7 @@ angular.module('Application').controller('OidcController', ['$scope', '$location Client.getOidcClients(function (error, result) { if (error) return console.error('Failed to load oidc clients', error); - $scope.clients = result; + $scope.clients = result.filter(function (c) { return !c.appId; }); }); };