RepeatableEntry table wrong rendering
Trying to use RepeatableEntry in InfoList
i'm expecting 3 rows and 3 cols but look at the image
i have only one column
->table([
TableColumn::make(__('field')),
TableColumn::make(__('condition')),
TableColumn::make(__('value')),
])
->schema([
TextEntry::make('field')
->hiddenLabel(),
TextEntry::make('condition')
->hiddenLabel(),
TextEntry::make('value')
->hiddenLabel(),
])->table([
TableColumn::make(__('field')),
TableColumn::make(__('condition')),
TableColumn::make(__('value')),
])
->schema([
TextEntry::make('field')
->hiddenLabel(),
TextEntry::make('condition')
->hiddenLabel(),
TextEntry::make('value')
->hiddenLabel(),
])i'm expecting 3 rows and 3 cols but look at the image
i have only one column
