Issue with Filament form fields being cleared during live updates
I have 2 fields that will be filled quickly using tab navigation. The second field doesn't need to stay updated/reactive, but it seems that when the data updates, it clears what the user is typing.
I've tried using:
PHP
->extraAttributes([
'wire:ignore' => true, // Ignore this element
])
Without success. Honestly, just removing it from the update cycle would be fine because this second field must always be entered by the user and is never calculated.
How can I achieve this?
1 Reply
This video shows the issue