From aa4bdfe6d180d0df12479d53e37a5fe7effddb3b Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Tue, 17 Dec 2019 12:40:21 +0100 Subject: [PATCH] Update public/app/core/config.ts --- public/app/core/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/config.ts b/public/app/core/config.ts index 92684327a39..8f7618ea593 100644 --- a/public/app/core/config.ts +++ b/public/app/core/config.ts @@ -11,7 +11,7 @@ export const getConfig = () => { }; export const mockConfig = (mock: Partial) => { - configMock = mock as GrafanaBootConfig; + configMock = mock; return () => { configMock = null; };