Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
funkwhale
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
169
Issues
169
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
funkwhale
funkwhale
Commits
58c6a27b
Verified
Commit
58c6a27b
authored
Dec 13, 2017
by
Agate
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #43: broken play all button on artist card
parent
35e9b48c
Pipeline
#269
passed with stage
in 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
CHANGELOG
CHANGELOG
+7
-1
front/src/components/library/Artists.vue
front/src/components/library/Artists.vue
+8
-0
No files found.
CHANGELOG
View file @
58c6a27b
...
...
@@ -5,4 +5,10 @@ Changelog
0.2.4 (unreleased)
------------------
Models: now store relese group mbid on Album model (#7)
Features:
- Models: now store relese group mbid on Album model (#7)
Bugfixes:
- Library: fixen broken "play all albums" button on artist cards in Artist browsing view (#43)
front/src/components/library/Artists.vue
View file @
58c6a27b
...
...
@@ -30,6 +30,7 @@
<
script
>
import
config
from
'
@/config
'
import
backend
from
'
@/audio/backend
'
import
logger
from
'
@/logging
'
import
ArtistCard
from
'
@/components/audio/artist/Card
'
import
Pagination
from
'
@/components/Pagination
'
...
...
@@ -66,6 +67,13 @@ export default {
logger
.
default
.
debug
(
'
Fetching artists
'
)
this
.
$http
.
get
(
url
,
{
params
:
params
}).
then
((
response
)
=>
{
self
.
result
=
response
.
data
self
.
result
.
results
.
map
((
artist
)
=>
{
var
albums
=
JSON
.
parse
(
JSON
.
stringify
(
artist
.
albums
)).
map
((
album
)
=>
{
return
backend
.
Album
.
clean
(
album
)
})
artist
.
albums
=
albums
return
artist
})
self
.
isLoading
=
false
})
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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