File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
BootstrapBlazor.Server/Components/Samples Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2929<DemoBlock Title =" @Localizer[" ProgressDisplayValueTitle " ]"
3030 Introduction =" @Localizer[" ProgressDisplayValueIntro " ]"
3131 Name =" DisplayValue" >
32- <BootstrapBlazor .Components.Progress Value =" 25" IsShowValue =" true" ></BootstrapBlazor .Components.Progress >
32+ <BootstrapBlazor .Components.Progress Value =" 25.5 " IsShowValue =" true" ></BootstrapBlazor .Components.Progress >
3333</DemoBlock >
3434
3535<DemoBlock Title =" @Localizer[" ProgressHeightTitle " ]"
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Razor" >
22
33 <PropertyGroup >
4- <Version >9.8.0 </Version >
4+ <Version >9.8.1-beta01 </Version >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change 33// See the LICENSE file in the project root for more information.
44// Maintainer: Argo Zhang([email protected] ) Website: https://www.blazor.zone 55
6+ using System . Globalization ;
7+
68namespace BootstrapBlazor . Components ;
79
810/// <summary>
@@ -85,7 +87,7 @@ public partial class Progress
8587 /// 获得 Style 集合
8688 /// </summary>
8789 private string ? StyleName => CssBuilder . Default ( )
88- . AddClass ( $ "width: { InternalValue } %;")
90+ . AddClass ( $ "width: { InternalValue . ToString ( CultureInfo . InvariantCulture ) } %;")
8991 . Build ( ) ;
9092
9193 /// <summary>
You can’t perform that action at this time.
0 commit comments