From 4701f41e67ad882ac3f4957e66ceae2fa438f1c6 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Mon, 26 Sep 2022 13:07:06 +0200 Subject: [PATCH] fix typo in actions_links merge in form-template Signed-off-by: Michael Kaufmann --- templates/Froxlor/user/form.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Froxlor/user/form.html.twig b/templates/Froxlor/user/form.html.twig index 1357dd7b..3e4afa36 100644 --- a/templates/Froxlor/user/form.html.twig +++ b/templates/Froxlor/user/form.html.twig @@ -21,7 +21,7 @@ {% block actions %} {% if formdata.self_overview is defined and formdata.self_overview is iterable %} - {% if action_links is not defined %}{% set actions_links = [] %}{% endif %} + {% if actions_links is not defined %}{% set actions_links = [] %}{% endif %} {% set actions_tmp = actions_links %} {% set actions_links = {'href': linker(formdata.self_overview), 'icon': 'fa-solid fa-reply','label': lng('panel.backtooverview')} %} {% set actions_links = {actions_links}|merge(actions_tmp) %}