DariusIII
TextColumn wrap() broken on 3.1.21
wrapping text is broken on 3.1.21 and it work fine on 3.1.20. My guess is that issue comes with this PR: https://github.com/filamentphp/filament/pull/9149 as that is the only thing in this release that is related to alignment. I made a comment in that PR with example.
4 replies
Object of class Filament\Support\Enums\Alignment could not be converted to string
I started having this issue on every version after .83. All is working fine on 3.0.83, so i have to stick to it for now.
Here is the link to trace:
https://flareapp.io/share/xPQwOar5
7 replies
auth()->user-> not filled in form
I have an issue with username not being filled neither with
deafult()
or reactive()
. It looks like auth()->user()->name not being used at all. There is no error whatsoever shown, just data being ignored. Currently i am filling those with mutateFormDataBeforeSave
, but i would like to have it in form directly.
Forms\Components\Checkbox::make('checked')
->label('Checked')
->reactive()
->afterStateUpdated(fn ($state, callable $set) => $state === true ? $set('checked_by', auth()->user()->name) : $set('checked_by', null))
->afterStateUpdated(fn ($state, callable $set) => $state === true ? $set('checked_time', now()->toDateTimeString()) : $set('checked_time', null)),
Checked time works as it should, i have issue only with checked_by field.11 replies
Customizing login page
I have overridden the login page on v2 so username was used, but with upgrade to v3 it is not used anymore. I have tried to add my custom login as action in AdminPanelProvider login, but it still loads the default login page and not the customized one.
How can i achieve this in v3?
6 replies