nova-issues
nova-issues copied to clipboard
Color and Date Field width
- Laravel Version: 10.40.0
- Nova Version: 4.34.3
- PHP Version: 8.2
- Browser type and version: Google Chrome 126.0.6478.183
Description:
After udating laravel/nova package
from 4.28
to 4.34.3
Laravel\Nova\Fields\Color
as well as Laravel\Nova\Fields\Date
take up full width of the form.
I found no mentions of width change in release notes.
Before:
After:
Detailed steps to reproduce the issue on a fresh Nova installation:
- create resource
- add field
use Laravel\Nova\Fields\Color;
class ColorField
{
public static function make(): Color
{
return Color::make(__('Color'), 'color');
}
}