some final cleanup

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-12-17 10:13:02 +01:00
parent 7a4bd2ceac
commit 2847cd8234
11 changed files with 18 additions and 25 deletions
@@ -24,7 +24,7 @@ const columns: TableColumn[] = [
field: 'name',
highlight: true,
render: (componentData: any) => (
<Link to={`/gitops-cluster/${componentData.name}`}>
<Link to={`/gitops-cluster/${encodeURIComponent(componentData.name)}`}>
{componentData.name}
</Link>
),