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
User can click mouse buttons - but tool does not recognize it as activity. Usecase: I setup idle period as 1min. Then I idle 30 sec and click mouse on button which async execute some action without refreshing page. I did not move mouse and mouse was over button. But after 30 sec idle tool execute action "Time is out" and unlogin user. It is a bug.
Workaround: subscribe to mouse clicks and force restart service:
User can click mouse buttons - but tool does not recognize it as activity. Usecase: I setup idle period as 1min. Then I idle 30 sec and click mouse on button which async execute some action without refreshing page. I did not move mouse and mouse was over button. But after 30 sec idle tool execute action "Time is out" and unlogin user. It is a bug.
Workaround: subscribe to mouse clicks and force restart service:
const mouseUps = fromEvent(window, 'mouseup');
mouseUps.forEach(() => {
this.idleService.startWatching();
});
The text was updated successfully, but these errors were encountered: