Select Menu issue while in dark mode
I ran:
npm run dev
php artisan filament:upgrade
and still did not work
15 Replies
->native(false)
?I did not understand
->native(false) disabled the select field?
what is the Filament version? Check on the dashboard page please
It is v3.0.0.0
I just notice that
How can I upgrade ?
>> composer upgrade
?
How can I upgrade ?
composer require filament/filament:"^3.0-stable" -W
?It did work
not*
filament version still v3.0.0.0
composer update -W
?Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating optimized autoload files
nothing has been updated
why π¦
Why is my filament version still in v3.0.0.0
I would like to know as well π
Solution
usually it's a missing ^ in the composer.json line for filament.
this makes sense... share your
composer.json
"filament/filament": "^3.0-stable"
notice the ^
. That will let you go above 3.0.0
would recomment to delete composer.lock as wellThank you so much
that was the issue