We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d93c46 commit bd5b0d1Copy full SHA for bd5b0d1
blazorbootstrap/Components/Charts/BlazorBootstrapChart.cs
@@ -98,10 +98,10 @@ private string GetChartContainerSizeAsStyle()
98
var style = "";
99
100
if (Width > 0)
101
- style += $"width:{Width.Value.ToString(CultureInfo.InvariantCulture)}{WidthUnit.ToCssString()}";
+ style += $"width:{Width.Value.ToString(CultureInfo.InvariantCulture)}{WidthUnit.ToCssString()};";
102
103
if (Height > 0)
104
- style += $"height:{Height.Value.ToString(CultureInfo.InvariantCulture)}{HeightUnit.ToCssString()}";
+ style += $"height:{Height.Value.ToString(CultureInfo.InvariantCulture)}{HeightUnit.ToCssString()};";
105
106
return style;
107
}
0 commit comments