Alexandre
[Tab]-Key and [Arrow]-Keys in combination with Selectbox causes strange things
Hi, it's a problem linked to a dependency: ChoiceJS. The problem has been fixed on their side, and will be available for V4.Find out more here: https://github.com/filamentphp/filament/issues/5707 🙂
8 replies
Unit test problem in a ViewRecord resource
From my terminal I run
vendor\bin\pest
And from PHPStorm I can see this in the console when I click on the play button :
I use the Pest Plugin 🙂
If I click on the button to run all the tests in the file, it fails, but if I run each function one after the other, it works.
11 replies
Need advice on the login logic of my application
Thank you for your response.
I thought about it at first, but I wasn't quite sure how to retrieve the entire nested layout of filament (not just the login form but HTML, body, ...), which I feel are other Livewire components
Knowing that I will also need to do the same with the passwordReset. The whole thing seemed a bit tricky to me, but I might be mistaken... 😅
And the advantage here is that I can put it on Filament without having to tweak my views...
Aside from the URL, do you see any potential issues with what I’ve implemented?
7 replies
Disable back button for wizard on modal
Hi.
You have this method :
->previousAction()
So you can try that :
->previousAction(fn (Action $action): Action => $action->extraAttributes(['class' => 'hidden']))
Cf. https://github.com/filamentphp/filament/discussions/9942#discussioncomment-77022425 replies