From 55e20da00eaad4bc865df8ad6edeeb6ba82af748 Mon Sep 17 00:00:00 2001
From: jacobshandling <61553566+jacobshandling@users.noreply.github.com>
Date: Tue, 24 Feb 2026 09:57:01 -0800
Subject: [PATCH] Extend https://github.com/fleetdm/fleet/pull/39732 to the DUP
(#40367)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This isn't strictly necessary on the DUP since the type column is wider
there, but this change will handle any future cases where we have an
even longer type string without affecting current handling. No need for
a cherry-pick.
- [x] QA'd all new/changed functionality manually
---
.../hosts/details/cards/Software/DeviceSoftwareTableConfig.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/frontend/pages/hosts/details/cards/Software/DeviceSoftwareTableConfig.tsx b/frontend/pages/hosts/details/cards/Software/DeviceSoftwareTableConfig.tsx
index c74f8a2df4..6b9af560bd 100644
--- a/frontend/pages/hosts/details/cards/Software/DeviceSoftwareTableConfig.tsx
+++ b/frontend/pages/hosts/details/cards/Software/DeviceSoftwareTableConfig.tsx
@@ -11,6 +11,7 @@ import VulnerabilitiesCell from "pages/SoftwarePage/components/tables/Vulnerabil
import VersionCell from "pages/SoftwarePage/components/tables/VersionCell";
import { getVulnerabilities } from "pages/SoftwarePage/SoftwareTitles/SoftwareTable/helpers";
import SoftwareNameCell from "components/TableContainer/DataTable/SoftwareNameCell";
+import TooltipTruncatedTextCell from "components/TableContainer/DataTable/TooltipTruncatedTextCell";
type ISoftwareTableConfig = Column;
type ITableHeaderProps = IHeaderProps;
@@ -72,7 +73,7 @@ export const generateSoftwareTableHeaders = (): ISoftwareTableConfig[] => {
Cell: (cellProps: ITableStringCellProps) => {
const { source, extension_for } = cellProps.row.original;
const value = formatSoftwareType({ source, extension_for });
- return ;
+ return ;
},
},
{