Skip to content

Commit

Permalink
fix: fixed type due to new version of virtual lib
Browse files Browse the repository at this point in the history
  • Loading branch information
matusmlichsk committed Aug 19, 2024
1 parent a7e5938 commit 64337cb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const constantTableOptions = {
};

const sortingIconSize = 16;

export function calculateColumnWidth(
label: string,
isCompactMode: boolean,
Expand Down Expand Up @@ -127,7 +128,7 @@ export const useInitFilterFns = (table: Table<any>) => {
};

export const calculateHorizontalSpace = (
columnItems: VirtualItem[],
columnItems: VirtualItem<HTMLDivElement>[],
totalSize: number,
stickyLeftColumns: number
) => {
Expand Down

0 comments on commit 64337cb

Please sign in to comment.