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 57e1240 commit d8b1250Copy full SHA for d8b1250
1 file changed
src/components/BootstrapBlazor.DockView/Components/DockViewV2.razor
@@ -3,12 +3,6 @@
3
4
<div @attributes="@AdditionalAttributes" id="@Id" class="@ClassString">
5
<template>
6
- <CascadingValue Value="this" IsFixed="true">
7
- <CascadingValue Value="_components" IsFixed="true">
8
- @ChildContent
9
- </CascadingValue>
10
11
-
12
@if (DockView == null)
13
{
14
<DockViewIcon IconName="bar"></DockViewIcon>
@@ -24,5 +18,11 @@
24
18
<DockViewIcon IconName="pushpin"></DockViewIcon>
25
19
<DockViewDropdownIcon IconName="dropdown"></DockViewDropdownIcon>
26
20
}
21
+
22
+ <CascadingValue Value="this" IsFixed="true">
23
+ <CascadingValue Value="_components" IsFixed="true">
+ @ChildContent
+ </CascadingValue>
27
</template>
28
</div>
0 commit comments