From 199186e5a39d2e0766e16c817011735f46d638ea Mon Sep 17 00:00:00 2001 From: Per Stark Date: Thu, 16 Oct 2025 11:24:07 +0200 Subject: [PATCH] fix: variable name --- common/src/utils/template_engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/utils/template_engine.rs b/common/src/utils/template_engine.rs index 51e44dd..7c3a612 100644 --- a/common/src/utils/template_engine.rs +++ b/common/src/utils/template_engine.rs @@ -88,7 +88,7 @@ impl TemplateEngine { Self::Embedded(env) => env .get_template(template_name)? .eval_to_state(context)? - .render_block(block.name), + .render_block(block_name), } } }