Skip to content

Commit

Permalink
Fixes the link to point to the correct Kibana index location
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHassanabad committed Jul 29, 2020
1 parent 296eaad commit 9cdd975
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as i18n from './translations';

export const IndexPatternsMissingPromptComponent = () => {
const { docLinks } = useKibana().services;
const kibanaBasePath = `${useBasePath()}/app/kibana`;
const kibanaBasePath = `${useBasePath()}/app`;

return (
<EuiEmptyPrompt
Expand All @@ -29,7 +29,7 @@ export const IndexPatternsMissingPromptComponent = () => {
values={{
defaultIndex: (
<a
href={`${kibanaBasePath}#/management/kibana/settings`}
href={`${kibanaBasePath}/management/kibana/settings`}
rel="noopener noreferrer"
target="_blank"
>
Expand Down Expand Up @@ -61,7 +61,7 @@ export const IndexPatternsMissingPromptComponent = () => {
}
actions={
<EuiButton
href={`${kibanaBasePath}#/management/kibana/indexPatterns`}
href={`${kibanaBasePath}/management/kibana/indexPatterns`}
color="primary"
target="_blank"
fill
Expand Down

0 comments on commit 9cdd975

Please sign in to comment.