3.2 Upgrade Issue
After upgrading my filament from 3.0 to 3.2 getting a braking issue of CSS, the same thing happens in the table pagination section. In dark mode input type css broken.
28 Replies
Do you ran npm run build?
Looks like you have a custom theme. Did you recompile it, as Igor suggests?
yes I did several times.
disable lastpass
Yeah. Or try in a private browser session.
I'm facing the same issues after upgrading from 3.0 to 3.2, in my case tables are having fun and now the page does not hide the overflow and the horizontal scrollbar is showing, no custom theme, no custom css, run filament upgrade, cleared laravel caches (including bootstrap caches), chrome cache no resources/views/vendor to be deleted, tried in a private version too, ...anything works but it is working fine in firefox
Any errors in DevTools?
Any, crystal clear
Do you have any views overridden?
any, I'm using the default theme and packages
Can you downgrade and see whether that fixes the issue, and then pinpoint the exact version?
composer update from * v3.0.101 to * v3.2.14
v3.0.101 was ok, then I did a composer update to v3.2.14 and the issue raised
now it is working fine again
done
Yeah. Please find out the exact version 😅 That's quite a range.
let me see, ...
@Dennis Koch bumping from 3.1.22 to 3.1.23
after that the horizontal scrollbar is showing
Can you share
artisan about
output?This seems the only change that might affect the layout
https://github.com/filamentphp/filament/pull/10290
GitHub
Update index.blade.php for static positioning by bmckay959 · Pull R...
Fixes bug where, when the sidebar is collapsed, the tenant dropdown is covered by the table.
Description
BEFORE:
AFTER:
Code style
No updates.
Testing
Not 100% sure how to do this for UI outside ...
there you go
Looks good to me. Your view files are cached again though. Did you make sure to clear them again?
yeah, just cleared the cache again and the same happens when bumping from 3.1.22 to 3.1.23
Hm. I am not sure. Especially since it works in one browser.
yeah, it is working fine in firefox
i though it could be an extension too but in private mode is not working either, seems to be an issue related to chrome, both MacOS and Windows
@shojibflamon does it work for you in firefox?
I've found out the issue.
It's ridiculous. In my project I've moved the file from public/index.php to the root directory previously that's why I was getting those issues.
After moving the index.php file to the public directory like the default laravel installation, it works fine. @Miguel García you can try this if you've already do the same think like mine.
Thanks
@Miguel García or you can browse base-url/public to check
Ok in my case is an issue related to a css update, the relative class has been removed from packages/tables/resources/views/index.blade.php as @Dennis Koch pointed, and the table overflow appears, Thanks for the heads up Dennis