diff --git a/accountant/frontend/static/js/app.js b/accountant/frontend/static/js/app.js index 9985eee..c1492d3 100644 --- a/accountant/frontend/static/js/app.js +++ b/accountant/frontend/static/js/app.js @@ -34,9 +34,10 @@ angular.module('accountant', [ if(token) { var token_type = $storage.get('token_type'); - config.headers.Authorization = authorization; var authorization = token_type + ' ' + token; + config.headers.Authorization = authorization; } + return config; } };