From aabe1dd6c7f923c1f7e0980427d2ef70306a6c1c Mon Sep 17 00:00:00 2001 From: "michele.artini" Date: Tue, 16 Mar 2021 09:46:05 +0100 Subject: [PATCH] fixed a javascript param --- .../src/main/resources/static/resources/js/organizations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dnet-orgs-database-application/src/main/resources/static/resources/js/organizations.js b/apps/dnet-orgs-database-application/src/main/resources/static/resources/js/organizations.js index 8d37b098..53d091a9 100644 --- a/apps/dnet-orgs-database-application/src/main/resources/static/resources/js/organizations.js +++ b/apps/dnet-orgs-database-application/src/main/resources/static/resources/js/organizations.js @@ -462,7 +462,7 @@ orgsModule.controller('typesCtrl', function ($scope, $http, $routeParams) { call_http_get($http, 'api/organizations/browse/types', function(res) { $scope.entries = res.data; }); }); -orgsModule.controller('byTypeCtrl', function ($scope, $http, $routeParams, $) { +orgsModule.controller('byTypeCtrl', function ($scope, $http, $routeParams, $location) { $scope.fieldValue = $routeParams.type;