-
Notifications
You must be signed in to change notification settings - Fork 42
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 #20
Comments
@xiongxiong Have you found any fix for this bug? |
@suhabaobaid Change the file SortableSudokuGrid.js at line 150, to: |
@xiongxiong Thanks! That was my initial fix...I was hoping for one not to meddle with the node_modules |
@suhabaobaid You can fork the project, and publish it with another name, then change the dependency to your project, else your changes in node_modules will be drop when you update dependencies. |
SortableSudokuGrid.js
line 150:
newState.containerHeight = this.createHeight(nextProps)
如果前面两个条件都不满足的话,这里newState可能为undefined,我在首页使用该控件时出现了这个问题。是否应该改作:
if (newState) {
newState.containerHeight = this.createHeight(nextProps)
}
???
The text was updated successfully, but these errors were encountered: