You've already forked AstralRinth
forked from didirus/AstralRinth
Make links on project pages more consistent, fix some selectors showing when they shouldn't (#391)
* Make links on project pages more consistent, fix some selectors showing when they shouldn't * Update components/ui/VersionFilterControl.vue Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f1f8163bb7
commit
8b5db12e1d
@@ -340,7 +340,7 @@
|
||||
:to="`/${project.project_type}/${
|
||||
project.slug ? project.slug : project.id
|
||||
}/version/${encodeURIComponent(version.version_number)}`"
|
||||
class="top"
|
||||
class="top title-link"
|
||||
>
|
||||
{{ version.name }}
|
||||
</nuxt-link>
|
||||
@@ -380,10 +380,12 @@
|
||||
:key="member.user.id"
|
||||
class="team-member columns"
|
||||
>
|
||||
<img :src="member.avatar_url" alt="profile-picture" />
|
||||
<nuxt-link :to="'/user/' + member.user.username" class="name">
|
||||
<img :src="member.avatar_url" alt="profile-picture" />
|
||||
</nuxt-link>
|
||||
<div class="member-info">
|
||||
<nuxt-link :to="'/user/' + member.user.username" class="name">
|
||||
<p>{{ member.name }}</p>
|
||||
<p class="title-link">{{ member.name }}</p>
|
||||
</nuxt-link>
|
||||
<p class="role">{{ member.role }}</p>
|
||||
</div>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<div class="version-header">
|
||||
<span :class="'circle ' + version.version_type" />
|
||||
<div class="version-header-text">
|
||||
<h2 class="name">
|
||||
<h2 class="name title-link">
|
||||
<nuxt-link
|
||||
:to="`/${project.project_type}/${
|
||||
project.slug ? project.slug : project.id
|
||||
|
||||
@@ -45,9 +45,8 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card buttons">
|
||||
<div v-if="currentMember" class="card buttons">
|
||||
<button
|
||||
v-if="currentMember"
|
||||
class="iconified-button"
|
||||
@click="
|
||||
newGalleryItems.push({
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<div class="info">
|
||||
<div class="top">
|
||||
<div class="top title-link">
|
||||
<nuxt-link
|
||||
:to="`/${project.project_type}/${
|
||||
project.slug ? project.slug : project.id
|
||||
|
||||
Reference in New Issue
Block a user