mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Security Solution] Fix URI param encoding on user and host details page (#129064)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
158c6170ae
commit
5b82971267
2 changed files with 12 additions and 2 deletions
|
@ -50,7 +50,12 @@ export const HostsContainer = React.memo(() => (
|
|||
match: {
|
||||
params: { detailName },
|
||||
},
|
||||
}) => <HostDetails hostDetailsPagePath={hostDetailsPagePath} detailName={detailName} />}
|
||||
}) => (
|
||||
<HostDetails
|
||||
hostDetailsPagePath={hostDetailsPagePath}
|
||||
detailName={decodeURIComponent(detailName)}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<Route
|
||||
path={hostDetailsPagePath}
|
||||
|
|
|
@ -31,7 +31,12 @@ export const UsersContainer = React.memo(() => {
|
|||
match: {
|
||||
params: { detailName },
|
||||
},
|
||||
}) => <UsersDetails usersDetailsPagePath={usersDetailsPagePath} detailName={detailName} />}
|
||||
}) => (
|
||||
<UsersDetails
|
||||
usersDetailsPagePath={usersDetailsPagePath}
|
||||
detailName={decodeURIComponent(detailName)}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<Route
|
||||
path={usersDetailsPagePath}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue