Skip to content

Commit

Permalink
The return from the API doesn't have the experiments attribute, it is…
Browse files Browse the repository at this point in the history
… just an array.
  • Loading branch information
longdogz committed Nov 9, 2016
1 parent 0cd7267 commit 45c6847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui/app/scripts/services/ApplicationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ angular.module('wasabi.services').factory('ApplicationsFactory', ['$resource', '
transformResponse: function (data) {
var parsedData = $.parseJSON(data);

return parsedData.experiments;
return parsedData;
},
isArray: true
},
Expand Down

0 comments on commit 45c6847

Please sign in to comment.