From 467364f3830ee9fdf84be95b9191709d5397a62f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 21 Aug 2018 20:39:09 +0100 Subject: [PATCH] refactor(ui): lower throttle to 300ms --- ui/src/Stores/AlertStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/Stores/AlertStore.js b/ui/src/Stores/AlertStore.js index fea8bcc69..d3674de43 100644 --- a/ui/src/Stores/AlertStore.js +++ b/ui/src/Stores/AlertStore.js @@ -212,7 +212,7 @@ class AlertStore { }); }); - fetchWithThrottle = throttle(this.fetch, 500); + fetchWithThrottle = throttle(this.fetch, 300); parseAPIResponse = action(result => { if (result.error) {