live() causes field to replace text
The following example from docs (for slug field) is causing the title field to refresh, the letters are erased.
4 Replies
Can you sahre a video of the issue? Please also read #✅┊rules on code formatting.
I am typing in "hi my name is"
I’d recommend using debounce on live in this case so it doesn’t make a request on every keystroke. Debounce will allow it to only make the request when the user stops typing for a defined length of time. https://filamentphp.com/docs/3.x/forms/advanced#debouncing-reactive-fields
Makes perfect sense, thanks!