Studio: reorder 'configuration file'-tab of Layer and Theme editors

This commit is contained in:
Pieter Vander Vennet 2024-04-27 23:45:25 +02:00
parent fc6d86397e
commit 4a8ecddd2f
2 changed files with 12 additions and 14 deletions

View file

@ -134,7 +134,7 @@
</div> </div>
<div class="flex flex-col mb-8" slot="content0"> <div class="flex flex-col mb-8" slot="content0">
<Region {state} configs={perRegion["Basic"]} /> <Region {state} configs={perRegion["Basic"]} />
<DeleteButton {state} {backToStudio} objectType="layer"/> <DeleteButton {state} {backToStudio} objectType="layer" />
</div> </div>
<div slot="title1" class="flex"> <div slot="title1" class="flex">
@ -185,12 +185,12 @@
Below, you'll find the raw configuration file in `.json`-format. This is mostly for Below, you'll find the raw configuration file in `.json`-format. This is mostly for
debugging purposes, but you can also edit the file directly if you want. debugging purposes, but you can also edit the file directly if you want.
</div> </div>
<ShowConversionMessages messages={$messages} /> <div class="literal-code overflow-y-auto h-full" style="min-height: 75%">
<div class="flex h-full w-full flex-row justify-between overflow-y-auto">
<div class="literal-code h-full w-5/6 overflow-y-auto">
<RawEditor {state} /> <RawEditor {state} />
</div> </div>
<div class="h-full w-1/6"> <ShowConversionMessages messages={$messages} />
<div class="flex w-full flex-col">
<div> <div>
The testobject (which is used to render the questions in the 'information panel' The testobject (which is used to render the questions in the 'information panel'
item has the following tags: item has the following tags:
@ -199,7 +199,6 @@
<AllTagsPanel tags={state.testTags} /> <AllTagsPanel tags={state.testTags} />
</div> </div>
</div> </div>
</div>
</TabbedGroup> </TabbedGroup>
</div> </div>
{#if $highlightedItem !== undefined} {#if $highlightedItem !== undefined}

View file

@ -123,11 +123,10 @@
Below, you'll find the raw configuration file in `.json`-format. This is mostly for Below, you'll find the raw configuration file in `.json`-format. This is mostly for
debugging purposes, but you can also edit the file directly if you want. debugging purposes, but you can also edit the file directly if you want.
</div> </div>
<ShowConversionMessages messages={$messages} /> <div class="literal-code overflow-y-auto h-full" style="min-height: 75%">
<div class="literal-code h-full w-full">
<RawEditor {state} /> <RawEditor {state} />
</div> </div>
</div> <ShowConversionMessages messages={$messages} />
</TabbedGroup> </TabbedGroup>
</div> </div>
</div> </div>