diff --git a/public/js/ff/budgets/show.js b/public/js/ff/budgets/show.js index 07cf18ed9e..5831c82031 100644 --- a/public/js/ff/budgets/show.js +++ b/public/js/ff/budgets/show.js @@ -8,11 +8,15 @@ * See the LICENSE file for details. */ -/** global: budgetChartUri */ +/** global: budgetChartUri,budgetLimitID */ $(function () { "use strict"; - - columnChart(budgetChartUri, 'budgetOverview'); + if (budgetLimitID > 0) { + lineChart(budgetChartUri, 'budgetOverview'); + } + if (budgetLimitID == 0) { + columnChart(budgetChartUri, 'budgetOverview'); + } });