We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e237b55 commit ada35d2Copy full SHA for ada35d2
src/Header/useCellResize.tsx
@@ -56,7 +56,7 @@ export default function useCellResize(
56
const offset = event.pageX - startPageX.current;
57
const oldWidth = colsWidths.get(columnKey);
58
let newWidth = startRealWidth.current + (isEndHandle ? offset : -offset);
59
- console.log('colsWidths', colsWidths);
+
60
if (newWidth < minWidth) {
61
newWidth = minWidth;
62
}
@@ -87,7 +87,7 @@ export default function useCellResize(
87
columnKey: key,
88
width,
89
}));
90
- console.log('componentWidth', componentWidth);
91
onColumnResizeEnd?.({ columnKey, width: newWidth, columnWidths });
92
93
});
0 commit comments