@@ -0,0 +1,7 @@
|
||||
---
|
||||
'@backstage/ui': patch
|
||||
---
|
||||
|
||||
Fixed Table Row component to correctly handle cases where no `href` is provided, preventing unnecessary router provider wrapping and fixing the cursor incorrectly showing as a pointer despite the element not being a link.
|
||||
|
||||
Affected components: Row
|
||||
@@ -51,7 +51,7 @@ export function Row<T extends object>(props: RowProps<T>) {
|
||||
</>
|
||||
);
|
||||
|
||||
if (isExternal) {
|
||||
if (!href || isExternal) {
|
||||
return (
|
||||
<ReactAriaRow
|
||||
id={id}
|
||||
|
||||
Reference in New Issue
Block a user