RepeatableEntry table wrong rendering

Trying to use RepeatableEntry in InfoList
->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
image.png
Was this page helpful?