From 27b9d5abb2543d043d9643dc52460f48c5cd758c Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:50:45 -0400 Subject: [PATCH] Fleet UI: Fix cut off long filepaths/hash (#32850) --- .../details/components/InventoryVersions/_styles.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/pages/hosts/details/components/InventoryVersions/_styles.scss b/frontend/pages/hosts/details/components/InventoryVersions/_styles.scss index a3082bd118..1ee0af3886 100644 --- a/frontend/pages/hosts/details/components/InventoryVersions/_styles.scss +++ b/frontend/pages/hosts/details/components/InventoryVersions/_styles.scss @@ -30,5 +30,12 @@ dt { min-width: 40px; } + + // Show entire hash and file path, easier to read/compare not hidden in tooltip + dd { + width: 100%; + text-wrap: wrap; + overflow-wrap: anywhere; + } } }