Github user nickwallen commented on a diff in the pull request:
https://github.com/apache/metron/pull/787#discussion_r143733430
--- Diff:
metron-interface/metron-alerts/src/app/shared/directives/alert-search.directive.ts
---
@@ -130,7 +130,7 @@ export class AlertSearchDirective implements
AfterViewInit, OnChanges {
private handleMouseEvent (callback: Function) {
clearTimeout(this.mouseEventTimer);
- this.mouseEventTimer = setTimeout(() => { callback(); }, 500);
+ this.mouseEventTimer = setTimeout(() => { callback(); }, 100);
--- End diff --
hey @iraghumitra - this slipped my mind earlier. can you point me to the
tests for this functionality? I don't want this merged unless we have good
tests.
---