diff --git a/frontend/pages/hosts/details/cards/Software/SoftwareTableConfig.tsx b/frontend/pages/hosts/details/cards/Software/SoftwareTableConfig.tsx
index ef6472d911..1c7db958b0 100644
--- a/frontend/pages/hosts/details/cards/Software/SoftwareTableConfig.tsx
+++ b/frontend/pages/hosts/details/cards/Software/SoftwareTableConfig.tsx
@@ -149,6 +149,13 @@ export const generateSoftwareTableHeaders = (
disableGlobalFilter: false,
Cell: (cellProps: IStringCellProps) => {
const { id, name, bundle_identifier: bundle } = cellProps.row.original;
+ if (deviceUser) {
+ return bundle ? (
+ renderBundleTooltip(name, bundle)
+ ) : (
+ {name}
+ );
+ }
return (
{bundle ? renderBundleTooltip(name, bundle) : name}