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 56ccb6e commit ee90e72Copy full SHA for ee90e72
2 files changed
src/components/BootstrapBlazor.Region/Components/SelectCity.razor.cs
@@ -15,7 +15,7 @@ public partial class SelectCity
15
[Parameter]
16
public bool IsMultiple { get; set; }
17
18
- private string? InputId => $"{Id}_input";
+ private string InputId => $"{Id}_input";
19
20
private string? ClassString => CssBuilder.Default("select bb-city")
21
.AddClass("disabled", IsDisabled)
src/components/BootstrapBlazor.Region/Components/SelectRegion.razor.cs
@@ -9,7 +9,7 @@ namespace BootstrapBlazor.Components;
9
/// </summary>
10
public partial class SelectRegion
11
{
12
13
14
private string? ClassString => CssBuilder.Default("select bb-region")
0 commit comments