Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
funkwhale
funkwhale
Commits
c2587e0a
Commit
c2587e0a
authored
Jan 03, 2021
by
heyarne
Browse files
Fix whitespace before album name link
parent
b42675b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
front/src/components/Queue.vue
View file @
c2587e0a
...
...
@@ -15,10 +15,10 @@
{{
currentTrack
.
title
}}
</router-link>
<div
class=
"sub header ellipsis"
>
<router-link
class=
"discrete link artist"
:to=
"
{name: 'library.artists.detail', params: {id: currentTrack.artist.id }}">
{{
currentTrack
.
artist
.
name
}}
</router-link>
<template
v-if=
"currentTrack.album"
>
/
<router-link
class=
"discrete link album"
:to=
"
{name: 'library.albums.detail', params: {id: currentTrack.album.id }}">
{{
currentTrack
.
album
.
title
}}
</router-link>
</
template
>
<router-link
class=
"discrete link artist"
:to=
"
{name: 'library.artists.detail', params: {id: currentTrack.artist.id }}">
{{
currentTrack
.
artist
.
name
}}
</router-link>
<template
v-if=
"currentTrack.album"
>
/
<router-link
class=
"discrete link album"
:to=
"
{name: 'library.albums.detail', params: {id: currentTrack.album.id }}">
{{
currentTrack
.
album
.
title
}}
</router-link>
</
template
>
</div>
</div>
</h1>
...
...
front/src/components/audio/Player.vue
View file @
c2587e0a
...
...
@@ -24,10 +24,10 @@
</router-link>
</strong>
<div
class=
"meta"
>
<router-link
@
click.stop.prevent=
""
class=
"discrete link"
:to=
"
{name: 'library.artists.detail', params: {id: currentTrack.artist.id }}">
{{
currentTrack
.
artist
.
name
}}
</router-link><template
v-if=
"currentTrack.album"
>
/
<router-link
@
click.stop.prevent=
""
class=
"discrete link"
:to=
"
{name: 'library.albums.detail', params: {id: currentTrack.album.id }}">
{{
currentTrack
.
album
.
title
}}
</router-link>
</
template
>
<router-link
@
click.stop.prevent=
""
class=
"discrete link"
:to=
"
{name: 'library.artists.detail', params: {id: currentTrack.artist.id }}">
{{
currentTrack
.
artist
.
name
}}
</router-link>
<template
v-if=
"currentTrack.album"
>
/
<router-link
@
click.stop.prevent=
""
class=
"discrete link"
:to=
"
{name: 'library.albums.detail', params: {id: currentTrack.album.id }}">
{{
currentTrack
.
album
.
title
}}
</router-link>
</
template
>
</div>
</div>
</div>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment