diff --git a/public/js/reports/default/month.js b/public/js/reports/default/month.js index be66324dff..22bb92dbc9 100644 --- a/public/js/reports/default/month.js +++ b/public/js/reports/default/month.js @@ -17,7 +17,7 @@ function drawChart() { // month view: // draw account chart - lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } diff --git a/public/js/reports/default/reports.js b/public/js/reports/default/reports.js index 23adac5fcd..306b876257 100644 --- a/public/js/reports/default/reports.js +++ b/public/js/reports/default/reports.js @@ -116,7 +116,7 @@ function drawChart() { } if (typeof lineChart !== 'undefined' && typeof accountIds !== 'undefined') { - lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } }