From ed8b84b4148680cc13b5dc3d1bbbfe3ae4acca66 Mon Sep 17 00:00:00 2001 From: Kris-K-Dev <92114648+Kris-K-Dev@users.noreply.github.com> Date: Wed, 14 Sep 2022 09:20:41 -0500 Subject: [PATCH] Fix URL encoding upon retrieving schemas (#2567) Co-authored-by: Roman Zabaluev --- kafka-ui-react-app/src/components/common/NewTable/LinkCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka-ui-react-app/src/components/common/NewTable/LinkCell.tsx b/kafka-ui-react-app/src/components/common/NewTable/LinkCell.tsx index aa6b2e826c..b6ca656d1d 100644 --- a/kafka-ui-react-app/src/components/common/NewTable/LinkCell.tsx +++ b/kafka-ui-react-app/src/components/common/NewTable/LinkCell.tsx @@ -7,7 +7,7 @@ const LinkCell: React.FC> = ({ getValue }) => { const value = `${getValue()}`; const handleClick: React.MouseEventHandler = (e) => e.stopPropagation(); return ( - + {value} );