Просмотр исходного кода

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

jamesread 7 месяцев назад
Родитель
Сommit
263601170f
1 измененных файлов с 3 добавлено и 6 удалено
  1. 3 6
      frontend/resources/vue/components/DashboardComponent.vue

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

@@ -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>