Skip to content

Commit

Permalink
Merge pull request NVIDIA#2145 from IsaacYangSLA/fix_json_request
Browse files Browse the repository at this point in the history
Fix incorrect format on request call for json response
  • Loading branch information
IsaacYangSLA authored Feb 22, 2019
2 parents 9f7bece + 84c7b71 commit 8a1bbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion digits/static/js/home_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ try {
$scope.load_jobs = function() {
$http({
method: 'GET',
url: URL_PREFIX + '/completed_jobs.json',
url: URL_PREFIX + '/completed_jobs/json',
}).then(function success(response) {
// Find the dataset reference count
var count = {};
Expand Down

0 comments on commit 8a1bbb7

Please sign in to comment.