From 8777eb3c7068af74de7001d1842138c157a134b5 Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Thu, 20 Jan 2022 10:32:49 -0800 Subject: [PATCH] [BUG] fix disableWelcomeScreen config (#1143) disableWelcomeScreen was erroneously removed from being exposed to browser (for testing purposes) and was not able to pass the config to disable the welcome screen showing. Issue: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/1138 Signed-off-by: Kawika Avilla --- src/plugins/home/server/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/home/server/index.ts b/src/plugins/home/server/index.ts index 7bfbae652542..5835d995932c 100644 --- a/src/plugins/home/server/index.ts +++ b/src/plugins/home/server/index.ts @@ -39,7 +39,7 @@ import { configSchema, ConfigSchema } from '../config'; export const config: PluginConfigDescriptor = { exposeToBrowser: { - disableWelcomeScreen: false, + disableWelcomeScreen: true, }, schema: configSchema, deprecations: ({ renameFromRoot }) => [