Skip to content

Commit

Permalink
[8.x] [Maps] Fix invalid index management link (#198499) (#198580)
Browse files Browse the repository at this point in the history
# Backport

This will backport the following commits from `main` to `8.x`:
- [[Maps] Fix invalid index management link
(#198499)](#198499)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Krzysztof
Kowalczyk","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-10-31T16:34:32Z","message":"[Maps]
Fix invalid index management link (#198499)\n\n## Summary\r\n\r\nThis PR
fixes invalid URL for `To modify the index, go to Index\r\nManagement.`
link.\r\n\r\nCloses:
#125003","sha":"7701087f443f57f0021fbfd71d83e4d914322426","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","Team:Presentation","release_note:skip","v9.0.0","backport:prev-minor","Feature:Maps"],"title":"[Maps]
Fix invalid index management
link","number":198499,"url":"https://github.com/elastic/kibana/pull/198499","mergeCommit":{"message":"[Maps]
Fix invalid index management link (#198499)\n\n## Summary\r\n\r\nThis PR
fixes invalid URL for `To modify the index, go to Index\r\nManagement.`
link.\r\n\r\nCloses:
#125003","sha":"7701087f443f57f0021fbfd71d83e4d914322426"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/198499","number":198499,"mergeCommit":{"message":"[Maps]
Fix invalid index management link (#198499)\n\n## Summary\r\n\r\nThis PR
fixes invalid URL for `To modify the index, go to Index\r\nManagement.`
link.\r\n\r\nCloses:
#125003","sha":"7701087f443f57f0021fbfd71d83e4d914322426"}}]}]
BACKPORT-->

Co-authored-by: Krzysztof Kowalczyk <[email protected]>
  • Loading branch information
kibanamachine and kowalczyk-krzysztof authored Oct 31, 2024
1 parent 8ae5e55 commit d7ce412
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class ImportCompleteView extends Component<Props, {}> {
<a
data-test-subj="indexManagementNewIndexLink"
target="_blank"
href={getHttp().basePath.prepend('/app/management/kibana/dataViews')}
href={getHttp().basePath.prepend('/app/management/data/index_management/indices')}
>
<FormattedMessage
id="xpack.fileUpload.importComplete.indexMgmtLink"
Expand Down

0 comments on commit d7ce412

Please sign in to comment.