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

View File

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