From a952246891f6aaf46d5999c93fdf5b3733df9668 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Mon, 19 Jul 2021 22:56:37 +0200 Subject: [PATCH] #585 - fixed alignment of filter settings reset button --- src/main/resources/templates/charts/charts.ftl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/resources/templates/charts/charts.ftl b/src/main/resources/templates/charts/charts.ftl index b65f7f5fd..501a3b5ca 100644 --- a/src/main/resources/templates/charts/charts.ftl +++ b/src/main/resources/templates/charts/charts.ftl @@ -225,7 +225,9 @@ <div class="collapsible-header"><i class="fas fa-filter"></i>${locale.getString("title.filter")} <span class="badge background-red hidden text-white" id="filterActiveBadge">${locale.getString("filter.active.short")}</span></div> <div class="collapsible-body left-align"> <@filterMacros.filterModalContent chartSettings.getFilterConfiguration() "filterConfiguration"/> - <@filterMacros.buttonResetChart/> + <div class="center-align"> + <@filterMacros.buttonResetChart/> + </div> </div> </li> </ul> -- GitLab