Skip to content

Commit

Permalink
fix: correctly link to the service landing page based on its ID and n…
Browse files Browse the repository at this point in the history
…ot its NAME
  • Loading branch information
SeanCassiere committed Jun 30, 2024
1 parent d731ada commit 2612d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routers/app/ui/pages/workspace-landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const WorkspaceLandingPage: FC<{
<tr>
<td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6 lg:pl-8">
<a
href={`/app/${tenant.workspace}/${service.name}`}
href={`/app/${tenant.workspace}/${service.id}`}
class="text-indigo-600 hover:text-indigo-900 hover:underline"
>
{service.name}
Expand Down

0 comments on commit 2612d0d

Please sign in to comment.