fix: (#702) Fixed actions being drawn in a column (an extra fieldset was being added)

This commit is contained in:
jamesread 2025-11-10 19:46:58 +00:00
parent b071b4d036
commit 263601170f
1 changed files with 3 additions and 6 deletions

View File

@ -14,12 +14,9 @@
</div> </div>
<template v-else-if="component.type == 'fieldset'"> <template v-else-if="component.type == 'fieldset'">
<fieldset> <template v-for="subcomponent in component.contents" :key="subcomponent.title">
<legend>{{ component.title }}</legend> <DashboardComponent :component="subcomponent" />
<template v-for="subcomponent in component.contents" :key="subcomponent.title"> </template>
<DashboardComponent :component="subcomponent" />
</template>
</fieldset>
</template> </template>
<div v-else> <div v-else>