From e0adb94dcadc5e9f0a9729e9a026413e1cddffa9 Mon Sep 17 00:00:00 2001 From: Miha Rekar Date: Sun, 8 Dec 2024 10:20:58 +0100 Subject: [PATCH] Don't wrap label --- app/helpers/shot_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/shot_helper.rb b/app/helpers/shot_helper.rb index b667d479..7f5bdce9 100644 --- a/app/helpers/shot_helper.rb +++ b/app/helpers/shot_helper.rb @@ -4,7 +4,7 @@ def metadata_pair(key, value) return if value.blank? || value == "0" || value == "UNKNOWN" tag.tr do - concat tag.td(key) + concat tag.td(key, class: "whitespace-nowrap") concat tag.td(value) end end