Skip to content

Commit ee90e72

Browse files
committed
refactor: 移除可为空标记
1 parent 56ccb6e commit ee90e72

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/BootstrapBlazor.Region/Components/SelectCity.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public partial class SelectCity
1515
[Parameter]
1616
public bool IsMultiple { get; set; }
1717

18-
private string? InputId => $"{Id}_input";
18+
private string InputId => $"{Id}_input";
1919

2020
private string? ClassString => CssBuilder.Default("select bb-city")
2121
.AddClass("disabled", IsDisabled)

src/components/BootstrapBlazor.Region/Components/SelectRegion.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace BootstrapBlazor.Components;
99
/// </summary>
1010
public partial class SelectRegion
1111
{
12-
private string? InputId => $"{Id}_input";
12+
private string InputId => $"{Id}_input";
1313

1414
private string? ClassString => CssBuilder.Default("select bb-region")
1515
.AddClass("disabled", IsDisabled)

0 commit comments

Comments
 (0)