From 5cd819c3ec2c9a5aad8b62e822a36c297cbb4716 Mon Sep 17 00:00:00 2001 From: Jahziel Villasana-Espinoza Date: Wed, 7 Aug 2024 09:39:59 -0400 Subject: [PATCH] fix: add open paren (#21128) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > No issue, just a tiny bug I noticed while testing in dogfood Saw a missing open paren in this tooltip: ![Screenshot 2024-08-07 at 9 22 38 AM](https://github.com/user-attachments/assets/018d9387-70d9-4877-bfe5-5654c7acb5d2) # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Manual QA for all new/changed functionality --- .../cards/Software/InstallStatusCell/InstallStatusCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx b/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx index f2822518e6..b99503903d 100644 --- a/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx +++ b/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx @@ -38,8 +38,8 @@ export const INSTALL_STATUS_DISPLAY_OPTIONS: Record< displayText: "Installed", tooltip: ({ lastInstalledAt: lastInstall }) => ( <> - Fleet installed software on this host {dateAgo(lastInstall as string)}). - Currently, if the software is uninstalled, the "Installed" + Fleet installed software on this host ({dateAgo(lastInstall as string)} + ). Currently, if the software is uninstalled, the "Installed" status won't be updated. ),