From 1301bbd07517dff52efdfc83cdecdb518ea59ff6 Mon Sep 17 00:00:00 2001 From: ebb-tide Date: Tue, 8 May 2018 11:53:38 -0700 Subject: [PATCH] Set default autorefresh interval to 0 --- ui/src/shared/constants/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/shared/constants/index.tsx b/ui/src/shared/constants/index.tsx index 3e3d87a466..4dd35dcd25 100644 --- a/ui/src/shared/constants/index.tsx +++ b/ui/src/shared/constants/index.tsx @@ -402,7 +402,7 @@ export const HTTP_UNAUTHORIZED = 401 export const HTTP_FORBIDDEN = 403 export const HTTP_NOT_FOUND = 404 -export const AUTOREFRESH_DEFAULT = 15000 // in milliseconds +export const AUTOREFRESH_DEFAULT = 0 // in milliseconds export const GRAPH = 'graph' export const TABLE = 'table'