Skip to content

Commit

Permalink
[fix] data table right margin in header (#2641)
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
  • Loading branch information
igorDykhta authored Sep 12, 2024
1 parent 66b7fbd commit 4f9d261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/src/common/data-table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export const TableSection = ({
columnWidth,
width: fixedWidth || width
};
const headerGridWidth = fixedWidth || width - browserScrollBarWidth;
const headerGridWidth = fixedWidth || width;
const dataGridHeight = fixedHeight || height;

return (
Expand Down

0 comments on commit 4f9d261

Please sign in to comment.