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'm experiencing a noticeable slowdown of the NXT web UI when PwdHash is enabled. Profiler shows that the culprit is discoverPasswordFields function which is consuming CPU. I've found a simple workaround for this:
Something like this. It's not quite necessary to find password fields ASAP, one second is enough to prevent cascaded launches because of the DOM updates so it relieves some stress. But it's better to make this search faster of course.
The text was updated successfully, but these errors were encountered:
I'm experiencing a noticeable slowdown of the NXT web UI when PwdHash is enabled. Profiler shows that the culprit is discoverPasswordFields function which is consuming CPU. I've found a simple workaround for this:
Something like this. It's not quite necessary to find password fields ASAP, one second is enough to prevent cascaded launches because of the DOM updates so it relieves some stress. But it's better to make this search faster of course.
The text was updated successfully, but these errors were encountered: