fix @const placement in PaneStack
This commit is contained in:
parent
6606d8c43d
commit
a02db87988
1 changed files with 1 additions and 1 deletions
|
|
@ -55,6 +55,7 @@
|
||||||
{@const isActive = index === panes.length - 1}
|
{@const isActive = index === panes.length - 1}
|
||||||
{@const isBehind = index < panes.length - 1}
|
{@const isBehind = index < panes.length - 1}
|
||||||
{@const showBackButton = index > 0 || pane.onback || onClose}
|
{@const showBackButton = index > 0 || pane.onback || onClose}
|
||||||
|
{@const PaneComponent = pane.component}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="pane"
|
class="pane"
|
||||||
|
|
@ -93,7 +94,6 @@
|
||||||
</SidebarHeader>
|
</SidebarHeader>
|
||||||
|
|
||||||
<div class="pane-content">
|
<div class="pane-content">
|
||||||
{@const PaneComponent = pane.component}
|
|
||||||
<PaneComponent {...pane.props ?? {}} />
|
<PaneComponent {...pane.props ?? {}} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue