From 77a7611acfde7f46ba0aefe5ffee2e27a813368d Mon Sep 17 00:00:00 2001 From: Matt Barton Date: Fri, 22 Nov 2024 14:50:31 +0000 Subject: [PATCH] fix aria tags on infobox components --- Childrens-Social-Care-CPD/Views/Shared/_InfoBox.cshtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Childrens-Social-Care-CPD/Views/Shared/_InfoBox.cshtml b/Childrens-Social-Care-CPD/Views/Shared/_InfoBox.cshtml index ac1f7a41..04443ec0 100644 --- a/Childrens-Social-Care-CPD/Views/Shared/_InfoBox.cshtml +++ b/Childrens-Social-Care-CPD/Views/Shared/_InfoBox.cshtml @@ -30,18 +30,18 @@ switch (Model.Type) { case InfoBoxType.GreenI: css = "infobox infobox-green-i"; - svg = ""; + svg = ""; break; case InfoBoxType.GreenBrain: css = "infobox infobox-green-brain"; - svg = ""; + svg = ""; break; case InfoBoxType.BlueI: default: css = "infobox"; - svg = ""; + svg = ""; break; } }