Fix URL encoding upon retrieving schemas (#2567)
Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
This commit is contained in:
parent
df2b2e01de
commit
ed8b84b414
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ const LinkCell: React.FC<CellContext<any, unknown>> = ({ getValue }) => {
|
|||
const value = `${getValue<string | number>()}`;
|
||||
const handleClick: React.MouseEventHandler = (e) => e.stopPropagation();
|
||||
return (
|
||||
<NavLink to={value} title={value} onClick={handleClick}>
|
||||
<NavLink to={encodeURIComponent(value)} title={value} onClick={handleClick}>
|
||||
{value}
|
||||
</NavLink>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue