Skip to content

Commit

Permalink
adds downsample error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dxenes1 committed Aug 6, 2020
1 parent 17a41e6 commit 6535965
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django/mgmt/static/js/downsample.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ function downsample_ajax(collection, experiment, channel, type, data){
500: function (response) {
raise_ajax_error(response);
$("#downsample-btn").removeClass('disabled');
},
409: function (response){
raise_ajax_error(response);
$("#downsample-btn").removeClass('disabled');
}
}
});
Expand Down

0 comments on commit 6535965

Please sign in to comment.