fix(ui): add missing cell styles to table selection column

The selection cell in multi-select tables was missing the base cell
styles, causing border styling to be incomplete. This adds the cell
class alongside the cellSelection class to ensure proper styling.

Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
Johan Persson
2026-01-19 15:24:16 +01:00
parent 7d589df112
commit cfac8a460d
2 changed files with 8 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/ui': patch
---
Fixed missing border styles on table selection cells in multi-select mode.
Affected components: Table
@@ -47,6 +47,7 @@ export function Row<T extends object>(props: RowProps<T>) {
<ReactAriaCell
className={clsx(
classNames.cellSelection,
styles[classNames.cell],
styles[classNames.cellSelection],
)}
>