Encode URL for repo

Fixes #595
This commit is contained in:
Andrei Pohilko
2025-07-07 13:37:09 +01:00
parent 96e103ff84
commit 285cc1fe1e
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ const LinkWithSearchParams = ({
let prefixedUrl = to;
if (!clusterMode) {
prefixedUrl = `/${context}${to}`;
prefixedUrl = `/${encodeURIComponent(context)}${to}`;
}
return (

View File

@@ -17,7 +17,7 @@ export const InstallUpgradeTitle: FC<InstallUpgradeProps> = ({
<div className="font-bold">
{`${text}`}
{(isUpgrade || releaseValues) && (
<span className="text-green-700">{chartName}</span>
<span className="text-green-700 ml-1">{chartName}</span>
)}
</div>
);