You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added a simple RatingColumn::make('difficulty') to a table and receive the following error when attempting to load that resource's index page:
Type of Yepsua\Filament\Tables\Components\RatingColumn::$width must be Closure|string|int|null (as in class Filament\Tables\Columns\Column)
I was able to make it work by going down into Yepsua\Filament\Tables\Components\RatingColumn.php class and fixing the $width property and the width() and getWidth() methods to match the signatures in Filament\Tables\Columns\Concerns\HasWidth.php.
The text was updated successfully, but these errors were encountered:
Laravel 11.10
Filament v3.2.91
filament-rating-field v0.4.0
I added a simple
RatingColumn::make('difficulty')
to a table and receive the following error when attempting to load that resource's index page:I was able to make it work by going down into
Yepsua\Filament\Tables\Components\RatingColumn.php
class and fixing the$width
property and thewidth()
andgetWidth()
methods to match the signatures inFilament\Tables\Columns\Concerns\HasWidth.php
.The text was updated successfully, but these errors were encountered: