Skip to content

Commit

Permalink
fix sizing bug introduced in Table
Browse files Browse the repository at this point in the history
  • Loading branch information
heswell committed Nov 13, 2024
1 parent aac4be5 commit 84ba9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vuu-ui/packages/vuu-table/src/useTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const useTable = ({
const verticalScrollbarWidth =
virtualContentHeight > viewportBodyHeight ? 10 : 0;
const availableWidth =
size.width - (verticalScrollbarWidth + (2 & selectionBookendWidth));
size.width - (verticalScrollbarWidth + 2 * selectionBookendWidth);

const rowClassNameGenerator = useRowClassNameGenerators(config);

Expand Down

0 comments on commit 84ba9c9

Please sign in to comment.