Select Menu issue while in dark mode

I ran: npm run dev php artisan filament:upgrade and still did not work
No description
Solution:
usually it's a missing ^ in the composer.json line for filament.
Jump to solution
15 Replies
LeandroFerreira
LeandroFerreira10mo ago
->native(false) ?
LancelotGamer
LancelotGamer10mo ago
I did not understand ->native(false) disabled the select field?
LeandroFerreira
LeandroFerreira10mo ago
what is the Filament version? Check on the dashboard page please
LancelotGamer
LancelotGamer10mo ago
It is v3.0.0.0 I just notice that How can I upgrade ? >> composer upgrade ? How can I upgrade ?
LeandroFerreira
LeandroFerreira10mo ago
composer require filament/filament:"^3.0-stable" -W ?
LancelotGamer
LancelotGamer10mo ago
It did work not* filament version still v3.0.0.0
LeandroFerreira
LeandroFerreira10mo ago
composer update -W?
LancelotGamer
LancelotGamer10mo ago
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
LeandroFerreira
LeandroFerreira10mo ago
I would like to know as well 😅
Solution
tuto1902
tuto190210mo ago
usually it's a missing ^ in the composer.json line for filament.
LeandroFerreira
LeandroFerreira10mo ago
this makes sense... share your composer.json
tuto1902
tuto190210mo ago
"filament/filament": "^3.0-stable" notice the ^ . That will let you go above 3.0.0 would recomment to delete composer.lock as well
LancelotGamer
LancelotGamer10mo ago
Thank you so much that was the issue