From bcb9d5fc92146e5a4b1c705acb8acbf6d26b563f Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Thu, 20 Jun 2019 06:46:47 -0700 Subject: [PATCH] Fix broken reference to prependBasePath in Remote Clusters shim. (#39277) --- x-pack/plugins/remote_clusters/public/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/remote_clusters/public/plugin.js b/x-pack/plugins/remote_clusters/public/plugin.js index 574e615175d71..3ea7c8c13d458 100644 --- a/x-pack/plugins/remote_clusters/public/plugin.js +++ b/x-pack/plugins/remote_clusters/public/plugin.js @@ -27,7 +27,7 @@ export class Plugin { chrome: { setBreadcrumbs }, notifications: { toasts }, fatalError, - http: { prependBasePath }, + http: { basePath: { prepend: prependBasePath } }, injectedMetadata: { getInjectedVar }, documentation: { elasticWebsiteUrl, docLinkVersion }, } = coreStart;