Skip to content

Commit

Permalink
fix default width of repeater items
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusheine committed Sep 20, 2024
1 parent 9e18c93 commit c24fdd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/former/src/sample/Repeater.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="flex flex-col gap-2 w-full items-start">
<label v-if="label" class="p-1">{{ label }}</label>
<div v-for="(item, index) in modelValue" :key="index" class="flex gap-2">
<div v-for="(item, index) in modelValue" :key="index" class="flex gap-2 w-full">
<FormDragContainer :node>
<FormRenderer :schema="node.children" :data="item" @update:data="updateItem(index, $event)" />
</FormDragContainer>
Expand Down

0 comments on commit c24fdd3

Please sign in to comment.