From 17d1b7805be7dcc05a43540e46c815f05ff5dbdf Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Mon, 11 May 2020 20:52:16 +0200 Subject: [PATCH] #338 - show correct name in delete modal --- src/main/resources/templates/templates/templates.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/templates/templates/templates.ftl b/src/main/resources/templates/templates/templates.ftl index 5dd399504..6305b6d4b 100644 --- a/src/main/resources/templates/templates/templates.ftl +++ b/src/main/resources/templates/templates/templates.ftl @@ -37,7 +37,7 @@ <div id="modalConfirmDelete" class="modal background-color"> <div class="modal-content"> <h4>${locale.getString("info.title.template.delete")}</h4> - <p>${locale.getString("info.text.template.delete", currentTemplate.getName())}</p> + <p>${locale.getString("info.text.template.delete", currentTemplate.getTemplateName())}</p> </div> <div class="modal-footer background-color"> <a href="<@s.url '/templates'/>" class="modal-action modal-close waves-effect waves-light red btn-flat white-text">${locale.getString("cancel")}</a> -- GitLab