Skip to content

Commit

Permalink
Fix link generation in Persistence component for kafkaTopicAcl
Browse files Browse the repository at this point in the history
  • Loading branch information
rbjornstad committed Dec 17, 2024
1 parent e1861c2 commit 70c1cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Persistence.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
{#if acl.node.teamName !== '*'}
<li>
<a
href={`/team/${acl.node.topic.team.slug}/${acl.node.topic.environment.name === 'prod-fss' ? 'prod-gcp' : acl.node.topic.environment.name === 'dev-fss' ? 'dev-gcp' : $data.environment.name}/kafka/${acl.node.topic.name}`}
href={`/team/${acl.node.topic.team.slug}/${acl.node.topic.environment.name === 'prod-fss' ? 'prod-gcp' : acl.node.topic.environment.name === 'dev-fss' ? 'dev-gcp' : acl.node.topic.environment.name}/kafka/${acl.node.topic.name}`}
>{acl.node.topic.name}</a
>
<code>({acl.node.access})</code>
Expand Down

0 comments on commit 70c1cf8

Please sign in to comment.