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 54ce8d4 commit 3139df9Copy full SHA for 3139df9
1 file changed
src/components/BootstrapBlazor.DockView/Components/DockViewComponent.razor
@@ -1,4 +1,4 @@
1
-@inherits DockViewComponentBase
+@inherits DockViewComponentBase
2
3
<div id="@Id" class="bb-dockview-panel" data-bb-key="@Key" data-bb-title="@Title">
4
@if (TitleTemplate != null)
@@ -11,5 +11,8 @@
11
{
12
<DockViewTitleBar BarIcon="@TitleBarIcon" BarIconUrl="@TitleBarIconUrl" OnClickBarCallback="OnClickBar"></DockViewTitleBar>
13
}
14
- @ChildContent
+ @if (Visible)
15
+ {
16
+ @ChildContent
17
+ }
18
</div>
0 commit comments