-
Notifications
You must be signed in to change notification settings - Fork 231
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
Both slider handles on the min side when rendering slider in a dropdown #136
Comments
I'm experiencing the same issue. The weird thing is that it worked at some point... did you manage to find the way to make it work? |
We are experiencing this too. |
Same issue =( |
What version is everyone using? We are on |
@mpowaga do you have insight on this? |
I dug into this some more and the issue is resolved on |
@danadn are you on the latest version? I could not replicate it on that version |
Ok, guaranteed that "version": "0.11.2" fixes it. Thanks @k0nserv ! |
Ok so I experienced the same problem, and upgrading to "0.11.2" didn't fix it. I remember that on earlier stages this worked just fine. Anyway... Instead, I found a workaround, by assigning a key to my component, that matches if the dropdown is open or closed. That way the component will be rerendered. So something like this did the trick for me, where filterBlockOpen is a boolean for the dropdown toggle. <FilterSlider key={`${filterBlockOpen}`} filter={filter} />; Don't know if that helps anyone but thought it might be worth sharing. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing due to inactivity. |
@geoalexidis thank you for sharing this, I still experienced this issue with version 1.0.5. @stonebk I've created a reproducer in Storybook, maybe it can be used for Styleguidist as well to identify the issue:
|
I am trying to render a slider in a dropdown menu(I am using a custom react bootstrap dropdown ). When doing this however both the handles are at the left most end of the slider. The slider behaves normally after clicking a few times on the slider.
Note: I am setting the value manually here to (0, 100) but still both the handles are at 0.
I am currently using version 0.8.0.
Why could this be happening?
The text was updated successfully, but these errors were encountered: