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 8539643 commit ba19cacCopy full SHA for ba19cac
src/Cell/useCellResize.tsx
@@ -55,7 +55,7 @@ export default function useCelResize(
55
const index = colsKeys.findIndex(key => key === columnKey);
56
57
const minWidth = typeof resizable === 'object' ? resizable.minWidth || 0 : 0;
58
- if (newWidth < minWidth && oldWidth > minWidth) {
+ if (newWidth < minWidth) {
59
newWidth = minWidth;
60
}
61
setLineLeft(
0 commit comments