We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that each time a widget is rendered and autoBind is called, it binds all functions including those that have already been bound.
Package Version: 6.0.0
The text was updated successfully, but these errors were encountered:
Reopening because it does seem to be real - in WidgetBase.set_properties is this code
if (this._initialProperties) { autoBind(this); } if (this._initialProperties === false || registeredDiffPropertyNames.length !== 0) { ... } else { this._initialProperties = false; }
so if registeredDiffPropertyNames is not empty _initialProperties is never set to false
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug
It seems that each time a widget is rendered and autoBind is called, it binds all functions including those that have already been bound.
Package Version: 6.0.0
The text was updated successfully, but these errors were encountered: