From 2506a7c8fb62ab57c4a2996b249b1a4e95da3220 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Tue, 18 Nov 2025 14:05:22 -0500 Subject: [PATCH] Fleet UI: Fix 2 instances of software name not showing display_name (#35918) --- .../components/SelfServiceTiles/SelfServiceTiles.tsx | 5 ++++- .../UpdatesCard/UpdateSoftwareItem/UpdateSoftwareItem.tsx | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/pages/hosts/details/cards/Software/SelfService/components/SelfServiceTiles/SelfServiceTiles.tsx b/frontend/pages/hosts/details/cards/Software/SelfService/components/SelfServiceTiles/SelfServiceTiles.tsx index dcf83e6087..5094cc9c19 100644 --- a/frontend/pages/hosts/details/cards/Software/SelfService/components/SelfServiceTiles/SelfServiceTiles.tsx +++ b/frontend/pages/hosts/details/cards/Software/SelfService/components/SelfServiceTiles/SelfServiceTiles.tsx @@ -67,7 +67,10 @@ const SelfServiceTiles = ({
- +
{software.software_package?.version || diff --git a/frontend/pages/hosts/details/cards/Software/SelfService/components/UpdatesCard/UpdateSoftwareItem/UpdateSoftwareItem.tsx b/frontend/pages/hosts/details/cards/Software/SelfService/components/UpdatesCard/UpdateSoftwareItem/UpdateSoftwareItem.tsx index 808f6f4dd2..e12d176c1b 100644 --- a/frontend/pages/hosts/details/cards/Software/SelfService/components/UpdatesCard/UpdateSoftwareItem/UpdateSoftwareItem.tsx +++ b/frontend/pages/hosts/details/cards/Software/SelfService/components/UpdatesCard/UpdateSoftwareItem/UpdateSoftwareItem.tsx @@ -61,6 +61,7 @@ interface IInstallerInfoProps { const InstallerInfo = ({ software }: IInstallerInfoProps) => { const { name, + display_name, source, icon_url: iconUrl, software_package: installerPackage, @@ -73,7 +74,9 @@ const InstallerInfo = ({ software }: IInstallerInfoProps) => {
- +
{installerPackage?.version || vppApp?.version || ""}