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 2cb6b62 commit fccf630Copy full SHA for fccf630
src/BootstrapBlazor/Components/Tab/Tab.razor.cs
@@ -487,7 +487,7 @@ public partial class Tab
487
private bool IsPreventDefault => _contextMenuZone != null;
488
489
private static string? GetTabItemClassString(TabItem item) => CssBuilder.Default("tabs-body-content")
490
- .AddClass("d-none", item is { IsActive: false })
+ .AddClass("d-none", !item.IsActive)
491
.Build();
492
493
/// <summary>
0 commit comments