From 0c16f9c43c00b083dc9d68766f923cb3c9c87518 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 5 Nov 2025 20:46:33 +0100 Subject: [PATCH] Optimized code --- roles/web-app-desktop/templates/menu/contact.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/web-app-desktop/templates/menu/contact.yml.j2 b/roles/web-app-desktop/templates/menu/contact.yml.j2 index 6a19726c..42e18e76 100644 --- a/roles/web-app-desktop/templates/menu/contact.yml.j2 +++ b/roles/web-app-desktop/templates/menu/contact.yml.j2 @@ -11,8 +11,8 @@ contact: description: Send {{ 'us' if service_provider.type == 'legal' else 'me' }} an email icon: class: fa-solid fa-envelope - url: mailto:{{service_provider.contact.email}} - identifier: {{service_provider.contact.email}} + url: mailto:{{ service_provider.contact.email }} + identifier: {{ service_provider.contact.email }} {% endif %} {% if service_provider.contact.phone is defined %} @@ -32,6 +32,6 @@ contact: description: Chat with {{ 'us' if service_provider.type == 'legal' else 'me' }} on Matrix icon: class: fa-solid fa-cubes - identifier: "{{service_provider.contact.matrix}}" + identifier: "{{ service_provider.contact.matrix }}" {% endif %}