Properly report AJAX errors

This commit is contained in:
2017-01-10 06:08:26 -05:00
parent 6e34a72c22
commit bea8be18ff
5 changed files with 16 additions and 16 deletions

View File

@ -39,7 +39,7 @@ function fetch(reportId) {
}
},
error: function(jqXHR, status, error) {
dispatch(ErrorActions.ajaxError(e));
dispatch(ErrorActions.ajaxError(error));
}
});
};