From 574ab8df4aa72008c6fd15916ece7bd26e137dbd Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Tue, 23 Aug 2022 22:11:30 +0200 Subject: [PATCH] #716 - remove icon description text --- .../src/main/resources/templates/transactions/transactions.ftl | 3 --- 1 file changed, 3 deletions(-) diff --git a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl index 0cde0acc4..907c6f12d 100644 --- a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl +++ b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl @@ -27,21 +27,18 @@ <div class="icon-block"> <h1 class="center text-green budget-headline-icon"><i class="material-icons icon-budget">file_download</i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getIncomeSum())}</h5> - <h5 class="center budget-headline">${locale.getString("title.incomes")}</h5> </div> </div> <div class="col s4"> <div class="icon-block"> <h1 class="center ${redTextColor} budget-headline-icon"><i class="material-icons icon-budget">file_upload</i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getExpenditureSum())}</h5> - <h5 class="center budget-headline">${locale.getString("title.expenditures")}</h5> </div> </div> <div class="col s4"> <div class="icon-block"> <h1 class="center text-blue budget-headline-icon"><i class="fas fa-piggy-bank icon-budget"></i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getRest())}</h5> - <h5 class="center budget-headline">${locale.getString("title.rest")}</h5> </div> </div> </div> -- GitLab