Skip to content

Commit

Permalink
[1.x][BUG] fix disableWelcomeScreen config (opensearch-project#1143) (o…
Browse files Browse the repository at this point in the history
…pensearch-project#1170)

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 authored Feb 1, 2022
1 parent f21558c commit b82f214
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 b82f214

Please sign in to comment.