diff --git a/public/v1/js/ff/budgets/index.js b/public/v1/js/ff/budgets/index.js index 168e41a13e..b6d702fa95 100644 --- a/public/v1/js/ff/budgets/index.js +++ b/public/v1/js/ff/budgets/index.js @@ -94,7 +94,6 @@ function updateBudgetedAmount(e) { start: periodStart, end: periodEnd }).done(function (data) { - input.prop('disabled', false); input.data('limit', data.id); // update amount left. diff --git a/resources/views/budgets/index.twig b/resources/views/budgets/index.twig index 1067b29fff..09bafef23a 100644 --- a/resources/views/budgets/index.twig +++ b/resources/views/budgets/index.twig @@ -352,31 +352,6 @@ {% endfor %} - - -   - {{ 'sum'|_ }} - - {% for arr in sums.budgeted %} - {{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }}
- {% endfor %} - - - {% for arr in sums.spent %} - {{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }} - ({{ formatAmountBySymbol(arr.amount / activeDaysPassed, arr.currency_symbol, arr.currency_decimal_places) }}) -
- {% endfor %} - - - {% for arr in sums.left %} - {{ formatAmountBySymbol(arr.amount, arr.currency_symbol, arr.currency_decimal_places) }} - ({{ formatAmountBySymbol(arr.amount / activeDaysLeft, arr.currency_symbol, arr.currency_decimal_places) }}) -
- {% endfor %} - - -