fix(frontend): link project name in project header to project index page (#706)

This commit is contained in:
MiniDigger | Martin 2022-11-08 21:21:23 +01:00
parent a6cd577925
commit 89513bfdd5

View File

@ -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>