My device page: Fix 'show details' to open software details modal (#26771)
This commit is contained in:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user