From cfac8a460dde1f6ce66bae8c0cdc0291b8be4dd0 Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Mon, 19 Jan 2026 15:24:16 +0100 Subject: [PATCH] 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 --- .changeset/stupid-words-fail.md | 7 +++++++ packages/ui/src/components/Table/components/Row.tsx | 1 + 2 files changed, 8 insertions(+) create mode 100644 .changeset/stupid-words-fail.md diff --git a/.changeset/stupid-words-fail.md b/.changeset/stupid-words-fail.md new file mode 100644 index 0000000000..a16b651f1c --- /dev/null +++ b/.changeset/stupid-words-fail.md @@ -0,0 +1,7 @@ +--- +'@backstage/ui': patch +--- + +Fixed missing border styles on table selection cells in multi-select mode. + +Affected components: Table diff --git a/packages/ui/src/components/Table/components/Row.tsx b/packages/ui/src/components/Table/components/Row.tsx index e08649c63b..6f7a4ce108 100644 --- a/packages/ui/src/components/Table/components/Row.tsx +++ b/packages/ui/src/components/Table/components/Row.tsx @@ -47,6 +47,7 @@ export function Row(props: RowProps) {