My device page: Fix 'show details' to open software details modal (#26771)

This commit is contained in:
RachelElysia
2025-03-03 16:21:51 -05:00
committed by GitHub
parent f909625685
commit 452650c03a
2 changed files with 5 additions and 2 deletions
@@ -0,0 +1 @@
- My device page > Software > Software table: Fixed clicking "Show details" to open the software details modal
@@ -18,7 +18,7 @@ interface IHostLinkProps {
customText?: string;
/** Table links shows on row hover and tab focus only */
rowHover?: boolean;
// don't actually create a link, useful when click is handled by an ancestor
/** Don't actually create a link, useful when click is handled by an ancestor */
noLink?: boolean;
}
@@ -51,7 +51,9 @@ const ViewAllHostsLink = ({
className={viewAllHostsLinkClass}
to={noLink ? "" : path}
onClick={(e) => {
e.stopPropagation(); // Allows for link to be clickable in a clickable row
if (!noLink) {
e.stopPropagation(); // Allows for link to have different onClick behavior than the row's onClick behavior
}
}}
onKeyDown={(e) => {
if (e.key === "Enter") {