Skip to content

Commit

Permalink
chore: table: update border to hide in mozilla browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
dkilgore-eightfold committed Jun 27, 2023
1 parent a77cf9f commit 0837e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table/Internal/Cell/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function Cell<RecordType extends DefaultRecordType>(
fixedStyle.position = 'sticky';
fixedStyle.right = fixRight as number;

if (fixRight === VERTICAL_SCROLL_OFFSET) {
if (fixRight <= VERTICAL_SCROLL_OFFSET) {
fixedStyle.borderRightColor = 'transparent';
}
}
Expand Down

0 comments on commit 0837e8e

Please sign in to comment.