Skip to content
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

Range slider change event emits wrong values #72

Open
wnvko opened this issue Apr 22, 2024 · 0 comments
Open

Range slider change event emits wrong values #72

wnvko opened this issue Apr 22, 2024 · 0 comments
Labels
🐛 bug Something isn't working forms

Comments

@wnvko
Copy link

wnvko commented Apr 22, 2024

Description

I am trying to update local variable via change event of the range slider component.

Steps to reproduce

Use code like this:

const [range, setRange] = useState<IgrRangeSliderValue | undefined>();
...
<IgrRangeSlider lower={range?.lower} upper={range?.upper} change={(_s, e) => setRange(e.detail)}></IgrRangeSlider>
<p>Range is {range?.lower} - {range?.upper}</p>

Result

On each change the e.detail contains {lower: 0, upper: 0}. Here is the result:
image

Expected result

change event should emit correct values in its detail.

@wnvko wnvko added the 🐛 bug Something isn't working label Apr 22, 2024
@Lipata Lipata added the forms label Apr 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug Something isn't working forms
Projects
None yet
Development

No branches or pull requests

2 participants