mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
fix: (#702) Fixed actions being drawn in a column (an extra fieldset was being added)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user