removed hidden action timeout to 1 sec

This commit is contained in:
Timo Bejan 2020-11-16 18:36:27 +02:00
parent f3c0c09f78
commit a53a0080e9

View File

@ -21,6 +21,6 @@ export class HiddenActionComponent implements OnInit {
clearTimeout(this._clickCountTimeout);
this._clickCountTimeout = setTimeout(() => {
this._clickCount = 0;
}, 10000);
}, 1000);
}
}