From ed3db9b01dd542a4f75bb734443ebf4f0f354c91 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 28 Nov 2024 17:29:46 +0100 Subject: [PATCH] fix: Updates section header level on dashboard Changes section headers from

to

for better hierarchy and improved visual clarity in the dashboard interface. --- frontend/templatetags/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/templatetags/dashboard.py b/frontend/templatetags/dashboard.py index 409d882..95ec4ad 100644 --- a/frontend/templatetags/dashboard.py +++ b/frontend/templatetags/dashboard.py @@ -23,7 +23,7 @@ def dashboard(context): dashboard_html = "" for section in sections: - dashboard_html += f"

{section.name}

" + dashboard_html += f"

{section.name}

" dashboard_html += section.get_html(context["request"])