-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] cell can't be selected sometimes #102
Comments
I will check it. Thanks |
Looks like different issues. But could be check once Is released, thanks for comment about it |
I was wrong, the bug is still present, the cells in the column can't be select because they are in the column to the right. Screen.Recording.2022-06-30.at.5.12.58.PM.mov |
I will test it, could not reproduce it yet |
Okey, This happens just when you add a column with the "insert right" of the last column I will investigate the cause |
Fixed controlling order of columns where are added or deleted with reactive strategy const [columnOrder, setColumnOrder] = React.useState<ColumnOrderState>(
columns.map((c) => c.id)
);
// Niveling number of columns
if (columnOrder.length !== columns.length) {
setColumnOrder(columns.map((c) => c.id));
} Now the cleanest way but does the job |
Describe the bug
Sometimes cells on newly created column can't be selected
To Reproduce
Files:
Steps:
Expected behavior
cells can be selected
Screenshots
Screen.Recording.2022-06-04.at.2.46.28.PM.mov
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: