Merge branch '913-missing-license-information-on-track-details-page' into 'develop'

Resolve "Missing license information on track details page"

Closes #913

See merge request funkwhale/funkwhale!875
This commit is contained in:
Eliot Berriot 2019-09-09 11:08:26 +02:00
commit 1a8edf27b3
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Fix missing license information on track details page (#913)

View File

@ -116,7 +116,7 @@ export default {
methods: {
fetchLicenseData(licenseId) {
var self = this
let url = `licenses/${licenseId}/`
let url = `licenses/${licenseId}`
axios.get(url).then(response => {
self.licenseData = response.data
})