Skip to content

Commit

Permalink
[1.x][BUG] fix disableWelcomeScreen config (opensearch-project#1143)
Browse files Browse the repository at this point in the history
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:
opensearch-project#1138

Backport PR:
opensearch-project#1143

Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
  • Loading branch information
kavilla committed Jan 20, 2022
1 parent f21558c commit e8be04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/home/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { configSchema, ConfigSchema } from '../config';

export const config: PluginConfigDescriptor<ConfigSchema> = {
exposeToBrowser: {
disableWelcomeScreen: false,
disableWelcomeScreen: true,
},
schema: configSchema,
deprecations: ({ renameFromRoot }) => [
Expand Down

0 comments on commit e8be04d

Please sign in to comment.