Do not attempt to render budget graph when no data available
This commit is contained in:
parent
5994cd38b6
commit
7f6bf1b07f
@ -156,6 +156,7 @@ function makeGrid() {
|
||||
function makeCharts() {
|
||||
// Display expense, revenue charts on budget view page
|
||||
|
||||
if (document.getElementById('chartExpenses')) {
|
||||
new Chart(document.getElementById('chartExpenses'), {
|
||||
type: 'pie',
|
||||
data: {
|
||||
@ -175,7 +176,9 @@ function makeCharts() {
|
||||
}
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
if (document.getElementById('chartRevExp')) {
|
||||
new Chart(document.getElementById('chartRevExp'), {
|
||||
type: 'bar',
|
||||
data: {
|
||||
@ -205,3 +208,4 @@ function makeCharts() {
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user