From 8f88679f6a645ec11af588bb5e153a59037aec61 Mon Sep 17 00:00:00 2001 From: cnathe Date: Tue, 9 Dec 2025 16:09:56 -0600 Subject: [PATCH] GitHub Issue 726: Fix typo in URLDisplayColumn img style width and height semicolon location --- api/src/org/labkey/api/data/URLDisplayColumn.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/org/labkey/api/data/URLDisplayColumn.java b/api/src/org/labkey/api/data/URLDisplayColumn.java index 55bb96d703d..4b5e202fc2c 100644 --- a/api/src/org/labkey/api/data/URLDisplayColumn.java +++ b/api/src/org/labkey/api/data/URLDisplayColumn.java @@ -182,7 +182,7 @@ public Renderable createThumbnailImage() String thumbnailUrl = _fileIconUrl != null ? ensureAbsoluteUrl(_ctx, _fileIconUrl) : ensureAbsoluteUrl(_ctx, _url); return IMG(at( - style, "display:block; vertical-align:middle;" + (renderSize ? (_thumbnailWidth != null ? " width:" + _thumbnailWidth : " max-width:32px" + "; ") + (_thumbnailHeight != null ? " height:" + _thumbnailHeight : " height:auto" + ";") : ""), + style, "display:block; vertical-align:middle;" + (renderSize ? (_thumbnailWidth != null ? " width:" + _thumbnailWidth : " max-width:32px") + "; " + (_thumbnailHeight != null ? " height:" + _thumbnailHeight : " height:auto") + ";" : ""), src, thumbnailUrl, title, _displayName )); }