You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing some unexpected cursor jumps when deleting a date-picker using the backspace key. This happens when date-picker is created with the property:
Looks like DatePicker is setting the cursor position when you type in the text field. If it is a Reagent input, Reagent also tries to set the cursor position which causes the cursor to jump unexpectedly.
The solution is to render a React input instead of a Reagent input:
Using js->clj fixed the issue by accident. It caused invalid props to be passed to mui/text-field so a default input was rendered instead of the custom Reagent input.
I am experiencing some unexpected cursor jumps when deleting a
date-picker
using the backspace key. This happens whendate-picker
is created with the property:as in this example.
The cursor behaves correctly with the property:
Why is this?
The text was updated successfully, but these errors were encountered: