Skip to content

Commit

Permalink
fix(frontend): link project name in project header to project index p…
Browse files Browse the repository at this point in the history
…age (#706)
  • Loading branch information
MiniDigger committed Nov 8, 2022
1 parent a6cd577 commit 89513bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/projects/ProjectHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ function requiresConfirmation(): boolean {
/>
<router-link class="!sm:ml-0" :to="'/' + project.namespace.owner">{{ project.namespace.owner }}</router-link>
<span class="text-gray-500 dark:text-gray-400"> / </span>
<h1 class="font-semibold">{{ project.name }}</h1>
<router-link :to="'/' + project.namespace.owner + '/' + project.name">
<h1 class="font-semibold">{{ project.name }}</h1>
</router-link>
</div>
<p>{{ project.description }}</p>
</div>
Expand Down

0 comments on commit 89513bf

Please sign in to comment.