From 52d686f7e21fdc2eb90c21b4a48547475744e0ae Mon Sep 17 00:00:00 2001 From: Antoine Maas Date: Fri, 20 Jun 2025 09:34:02 +0000 Subject: [PATCH] fix: hide jinja placeholder for title when no value-section with small cta --- .../section_with_small_cta/section_with_small_cta.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frappe/website/web_template/section_with_small_cta/section_with_small_cta.html b/frappe/website/web_template/section_with_small_cta/section_with_small_cta.html index 4465fcc153..c385329c7b 100644 --- a/frappe/website/web_template/section_with_small_cta/section_with_small_cta.html +++ b/frappe/website/web_template/section_with_small_cta/section_with_small_cta.html @@ -1,7 +1,9 @@
-

{{ title or '' }}

+ {%- if title -%} +

{{ _(title) }}

+ {%- endif -%} {%- if subtitle -%}

{{ subtitle }}

{%- endif -%}