From 244504f492e66ee8bf259cb2cdbf95dbfb871e03 Mon Sep 17 00:00:00 2001 From: Brendan Schlagel Date: Thu, 3 Jul 2025 13:52:53 -0400 Subject: [PATCH] make rendered alt text in leaflet doc imageblock w-full instead of w-max --- components/Blocks/ImageBlock.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Blocks/ImageBlock.tsx b/components/Blocks/ImageBlock.tsx index bd706017..c7bb9d8f 100644 --- a/components/Blocks/ImageBlock.tsx +++ b/components/Blocks/ImageBlock.tsx @@ -202,7 +202,7 @@ const ImageAlt = (props: { entityID: string }) => { placeholder="add alt text..." /> ) : ( -
{altText}
+
{altText}
)} -- 2.51.2