@page "/"
<h1> Issue remains with the following code snippets: </h1>
<span class="label label-default">
Detection Threshold: @_objectDetectionThreshold %
</span>
<input type="range" class="slider my-2" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
<span style="display: block">
Detection Threshold: @_objectDetectionThreshold %
</span>
<input type="range" class="slider my-2" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
<div class="label label-default">
Detection Threshold: @_objectDetectionThreshold %
</div>
<input type="range" style="display: block" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
<h1> Issue is gone with the following code snippets: </h1>
<span class="label label-default">
Detection Threshold: @_objectDetectionThreshold %
</span>
<input type="range" class="slider my-2" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput" @bind-value:culture="@System.Globalization.CultureInfo.InvariantCulture"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
<span style="display: block">
Detection Threshold: @_objectDetectionThreshold %
</span>
<input type="range" class="slider my-2" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput" @bind-value:culture="@System.Globalization.CultureInfo.InvariantCulture"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
<div class="label label-default">
Detection Threshold: @_objectDetectionThreshold %
</div>
<input type="range" style="display: block" min="0.0" step="0.1" max="100.0"
@bind-value="_objectDetectionThreshold" @bind-value:event="oninput" @bind-value:culture="@System.Globalization.CultureInfo.InvariantCulture"
data-toggle="tooltip" title=@_objectDetectionThreshold data-placement="top" />
@code {
float _objectDetectionThreshold = 80.0f;
}