In our Blazor-App we want to apply the width of an htmle-element by the style-attribute and an binding:
<div class="progress-bar" style="width: @Progress%;"></div>
@code {
[Parameter]
public int Progress { get; set; }
}
Problem: Visual Studio shows me an warning: "Unexpected character sequence in property value"
This warning has no CL... or BL... code.
Question: What is an elegant way to fix this warning?
