From 619dc0837dd76076a88c64daa3c71434603df326 Mon Sep 17 00:00:00 2001 From: Pablo Machado Date: Mon, 4 Apr 2022 11:59:46 +0200 Subject: [PATCH] [Security Solution] Fix URI param encoding on user and host details page (#129064) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> (cherry picked from commit 5b829712674c4347caa104ca1211dd36156b0ab7) --- .../plugins/security_solution/public/hosts/pages/index.tsx | 7 ++++++- .../plugins/security_solution/public/users/pages/index.tsx | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/hosts/pages/index.tsx b/x-pack/plugins/security_solution/public/hosts/pages/index.tsx index e42be25941ea7..00afec5da3756 100644 --- a/x-pack/plugins/security_solution/public/hosts/pages/index.tsx +++ b/x-pack/plugins/security_solution/public/hosts/pages/index.tsx @@ -50,7 +50,12 @@ export const HostsContainer = React.memo(() => ( match: { params: { detailName }, }, - }) => } + }) => ( + + )} /> { match: { params: { detailName }, }, - }) => } + }) => ( + + )} />