Browse Source

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

jamesread 7 tháng trước cách đây
mục cha
commit
263601170f

+ 3 - 6
frontend/resources/vue/components/DashboardComponent.vue

@@ -14,12 +14,9 @@
     </div>
     </div>
 
 
     <template v-else-if="component.type == 'fieldset'">
     <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>
     </template>
 
 
     <div v-else>
     <div v-else>