Commit c20bb663efa9c6015ba874fd305bc6e1bf751cee
1 parent
7a7cd53c
Exists in
master
and in
2 other branches
adapt category filter of api
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
www/js/controllers.js
... | ... | @@ -434,7 +434,7 @@ angular.module('confjuvapp.controllers', []) |
434 | 434 | $scope.loadProposalsOfMyCity = function() { |
435 | 435 | $scope.loading = true; |
436 | 436 | if($scope.proposalsFilter == ''){ |
437 | - $scope.proposalsFilter = '&categories_ids=' + $scope.profile.region.id; | |
437 | + $scope.proposalsFilter = '&category_ids=' + $scope.profile.region.id; | |
438 | 438 | }else{ |
439 | 439 | $scope.proposalsFilter = ''; |
440 | 440 | } | ... | ... |