diff --git a/app/src/components/v-form/v-form.vue b/app/src/components/v-form/v-form.vue
index bcefd05ac9..af1ab01b39 100644
--- a/app/src/components/v-form/v-form.vue
+++ b/app/src/components/v-form/v-form.vue
@@ -15,70 +15,72 @@
{{ t('no_visible_fields_copy') }}
-
+
+ :class="[
+ fieldsMap[fieldName]!.meta?.width || 'full',
+ index === firstVisibleFieldIndex ? 'first-visible-field' : '',
+ ]"
+ :field="fieldsMap[fieldName]"
+ :fields="fieldsForGroup[index] || []"
+ :values="modelValue || {}"
+ :initial-values="initialValues || {}"
+ :disabled="disabled"
+ :batch-mode="batchMode"
+ :batch-active-fields="batchActiveFields"
+ :primary-key="primaryKey"
+ :loading="loading"
+ :validation-errors="validationErrors"
+ :badge="badge"
+ :raw-editor-enabled="rawEditorEnabled"
+ :direction="direction"
+ v-bind="fieldsMap[fieldName]!.meta?.options || {}"
+ @apply="apply"
+ />
-
+
+