-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
rx.input(value=State.nested.var)
is not updated when nested
is set to a new object containing the same content.
#3653
Comments
I believe the issue is nkbt/react-debounce-input#130 The internal state of the debounce is not getting updated because the bound state var does not actually change value [1]. I'm not sure if there's actually a fix we can make here 😔, but there are some potential workarounds:
|
These fields on the base Component were not being carried onto the DebounceInput component (to be passed to the child). Discovered while testing #3653
Thanks for the fast reply @masenf . |
We could try https://github.com/xnimorz/use-debounce which seems to be better maintained |
These fields on the base Component were not being carried onto the DebounceInput component (to be passed to the child). Discovered while testing #3653
These fields on the base Component were not being carried onto the DebounceInput component (to be passed to the child). Discovered while testing #3653
Describe the bug
We have some validation checks in setters that do not let through some changes from the frontend. Unfortunately the reload button does not reset the UI.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The input should show the variable value after pressing the button.
The text was updated successfully, but these errors were encountered: