Open paul-vd opened 1 year ago
Edge & Chrome
When you have an input on screen for example
<input id='host' value='' />
The whole screen freezes, when you type in any of the inputs.
Create a new react app and update the App.tsx with the following
App.tsx
export default function App() { return ( <form> <input id='name' /> <input id='host' /> </form> ) }
Start typing in any of the inputs, you will notice the tab freezes, and you need to force quite it.
https://user-images.githubusercontent.com/39598117/203765417-6eba26eb-2de7-42dd-97d2-c673159c1840.mp4
this is an interesting issue, it seems to be a problem in SolidJS framework, which we use. Created bug report there https://github.com/solidjs/solid/issues/1380
Where the bug happens
your browser
Edge & Chrome
Describe the bug
When you have an input on screen for example
The whole screen freezes, when you type in any of the inputs.
To reproduce
Create a new react app and update the
App.tsx
with the followingStart typing in any of the inputs, you will notice the tab freezes, and you need to force quite it.
Additional Information
https://user-images.githubusercontent.com/39598117/203765417-6eba26eb-2de7-42dd-97d2-c673159c1840.mp4