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,19 +185,18 @@
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>
<div class="literal-code overflow-y-auto h-full" style="min-height: 75%">
<RawEditor {state} />
</div>
<ShowConversionMessages messages={$messages} /> <ShowConversionMessages messages={$messages} />
<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} />
</div>
<div class="h-full w-1/6">
<div>
The testobject (which is used to render the questions in the 'information panel'
item has the following tags:
</div>
<AllTagsPanel tags={state.testTags} /> <div class="flex w-full flex-col">
<div>
The testobject (which is used to render the questions in the 'information panel'
item has the following tags:
</div> </div>
<AllTagsPanel tags={state.testTags} />
</div> </div>
</div> </div>
</TabbedGroup> </TabbedGroup>

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>