Skip to content

Commit

Permalink
removing partitionGrouping from pages where it's not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Durdina committed Apr 10, 2015
1 parent b332755 commit 62961b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/offsetapp/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ angular.module("offsetapp.services", ["ngResource"])
return $resource("./group/:group").get({group:group}, processConsumer(cb));
},
topicDetail: function(group, cb) {
return $resource("./topicdetails/:group").get({group:group}, processConsumer(cb));
return $resource("./topicdetails/:group").get({group:group}, cb);
},
topicConsumers: function(group, cb) {
return $resource("./topic/:group/consumer").get({group:group}, processMultipleConsumers(cb));
Expand Down

0 comments on commit 62961b2

Please sign in to comment.