reverses tab order mistake in properties panel
This commit is contained in:
parent
3ccc0a39ff
commit
399bd1497b
|
@ -47,20 +47,6 @@
|
||||||
|
|
||||||
<Tabs selected="Settings">
|
<Tabs selected="Settings">
|
||||||
<Tab title="Settings">
|
<Tab title="Settings">
|
||||||
<div class="tab-content-padding">
|
|
||||||
{#if definition && definition.name}
|
|
||||||
<div class="instance-name">{definition.name}</div>
|
|
||||||
{/if}
|
|
||||||
<DesignView
|
|
||||||
componentInstance={$selectedComponent}
|
|
||||||
componentDefinition={definition}
|
|
||||||
{onStyleChanged}
|
|
||||||
{onCustomStyleChanged}
|
|
||||||
{onUpdateTransition}
|
|
||||||
{onResetStyles} />
|
|
||||||
</div>
|
|
||||||
</Tab>
|
|
||||||
<Tab title="Design">
|
|
||||||
<div class="tab-content-padding">
|
<div class="tab-content-padding">
|
||||||
{#if definition && definition.name}
|
{#if definition && definition.name}
|
||||||
<div class="instance-name">{definition.name}</div>
|
<div class="instance-name">{definition.name}</div>
|
||||||
|
@ -74,6 +60,20 @@
|
||||||
assetInstance={$store.currentView !== 'component' && $currentAsset} />
|
assetInstance={$store.currentView !== 'component' && $currentAsset} />
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
|
<Tab title="Design">
|
||||||
|
<div class="tab-content-padding">
|
||||||
|
{#if definition && definition.name}
|
||||||
|
<div class="instance-name">{definition.name}</div>
|
||||||
|
{/if}
|
||||||
|
<DesignView
|
||||||
|
componentInstance={$selectedComponent}
|
||||||
|
componentDefinition={definition}
|
||||||
|
{onStyleChanged}
|
||||||
|
{onCustomStyleChanged}
|
||||||
|
{onUpdateTransition}
|
||||||
|
{onResetStyles} />
|
||||||
|
</div>
|
||||||
|
</Tab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in New Issue