From 38f28285e491c029fb9c61bb766eb8d7b1cd5dd3 Mon Sep 17 00:00:00 2001
From: Martin Leblanc <m26lebla@uwaterloo.ca>
Date: Tue, 25 Apr 2023 13:56:04 -0400
Subject: [PATCH] ISTWCMS-6289: Fix the alt tag print on grid image gallery

---
 src/patterns/04-components/image-gallery/_image-gallery.twig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/patterns/04-components/image-gallery/_image-gallery.twig b/src/patterns/04-components/image-gallery/_image-gallery.twig
index ca8b3d39..780a1da5 100644
--- a/src/patterns/04-components/image-gallery/_image-gallery.twig
+++ b/src/patterns/04-components/image-gallery/_image-gallery.twig
@@ -83,7 +83,7 @@
           <div class="uw-ig__item">
             <div class="uw-ig__image">
               <a class="uw-lightbox__open" href="#uw-lightbox-{{image_gallery.images.id }}-{{ index }}">
-                <img src="{{ image.image.thumbnail }}" alt="{{ image.image.alt }}" />
+                <img src="{{ image.image.thumbnail }}" alt="{{ image.alt }}" />
               </a>
 
               {% if image.caption %}
-- 
GitLab