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 have followed the docs and component is working as expected but performance is really slow. I have done some profiling and received warnings about keypress event such that keypress handler took 119.43 ms.
I am using form as a class and bound all fields as
<Form.Input {...form.$("name").bind()} />
When I remove {...form.$("name").bind()} part, performance returns to normal. There must be some problem binding fields in the form.
PS: <Form.Input> is semantic ui's inputs. Switching to normal input did not change anything.
Am i missing something or is it a normal behaviour?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I have followed the docs and component is working as expected but performance is really slow. I have done some profiling and received warnings about keypress event such that keypress handler took 119.43 ms.
I am using form as a class and bound all fields as
<Form.Input {...form.$("name").bind()} />
When I remove
{...form.$("name").bind()}
part, performance returns to normal. There must be some problem binding fields in the form.PS:
<Form.Input>
is semantic ui's inputs. Switching to normal input did not change anything.Am i missing something or is it a normal behaviour?
Thanks!
The text was updated successfully, but these errors were encountered: