mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Fix use of absolute URLs for linecharts for the report pages.
This commit is contained in:
@@ -17,7 +17,7 @@ function drawChart() {
|
|||||||
|
|
||||||
// month view:
|
// month view:
|
||||||
// draw account chart
|
// 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');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -116,7 +116,7 @@ function drawChart() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof lineChart !== 'undefined' && typeof accountIds !== 'undefined') {
|
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');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user