From fe70fba0939fad79ae7bb21769d28aa8a88eb390 Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Fri, 30 May 2025 15:54:41 +0100 Subject: [PATCH 1/2] fix: missing prev-next attributes for nav --- components/prev-next/prev-next.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/prev-next/prev-next.twig b/components/prev-next/prev-next.twig index e8c3cdd8..c4488ffb 100644 --- a/components/prev-next/prev-next.twig +++ b/components/prev-next/prev-next.twig @@ -7,7 +7,7 @@ */ #} -{% set prevNextAttributes = prevNextAttributes|default(create_attribute) %} +{% set prevNextAttributes = create_attribute(prevNextAttributes|default({})) %} {% set icon_path = icon_path|default('@localgov_base/includes/icons') %} {% set prev_icon = prev_icon|default('chevron-left') %} From 9940bea58c40cf89a7250eefe10b275d18e636fc Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Fri, 30 May 2025 16:19:20 +0100 Subject: [PATCH 2/2] empty commit to trigger workflow