From 9aa7ec575a0f2b1a7d4f51d49e75d51ced678cd1 Mon Sep 17 00:00:00 2001 From: CJ <72030708+Teda1@users.noreply.github.com> Date: Fri, 10 Mar 2023 16:21:47 -0600 Subject: [PATCH] Fix undefined containerHeight error with imageWall columns (#3525) --- ui/v2.5/src/components/Images/ImageList.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/ui/v2.5/src/components/Images/ImageList.tsx b/ui/v2.5/src/components/Images/ImageList.tsx index fb761f347..b49975444 100644 --- a/ui/v2.5/src/components/Images/ImageList.tsx +++ b/ui/v2.5/src/components/Images/ImageList.tsx @@ -83,13 +83,15 @@ const ImageWall: React.FC = ({ images, handleImageOpen }) => { return (
- + {photos.length ? ( + + ) : null}
); };