Radzen Slider - click steps incorrect

Good afternoon all -
I'm having a little issue with the Radzen Blazor Slider component(Blazor Slider Component | Free UI Components by Radzen)

My issue is based around the clickable step positions being incorrect when using a min value of 1.

I have managed to recreate the issue on both the demo page and with a brand new project using the following markup:

<div class="w-100 mb-3">
    <p>Slider - 1-3</p>
    <RadzenSlider Min="1" Max="3" TValue="int" @bind-value="@_slider1"></RadzenSlider>
</div>
<div class="w-100 mb-3">
    <p>Slider - 0-2</p>
    <RadzenSlider Min="0" Max="2" TValue="int" @bind-value="@_slider2"></RadzenSlider>
</div>

@code
{
    private int _slider1 = 1;
    private int _slider2 = 0;
}

Whilst dragging the handle, the number of steps is accurate on both, however when clicking at the start of the slider bar, the 1-3 slider does not set the value to 1, unlike the 0-2 slider.

I've had a look around the components within the git repo - but I can't see where the handling for setting the value through a click event is!

It will be fixed in our next update early next week:

1 Like