Amend link to license in track detail page

This commit is contained in:
Ciarán Ainsworth 2019-09-06 17:13:05 +01:00
parent bc39b18173
commit 46b4bc68b1
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: { methods: {
fetchLicenseData(licenseId) { fetchLicenseData(licenseId) {
var self = this var self = this
let url = `licenses/${licenseId}/` let url = `licenses/${licenseId}`
axios.get(url).then(response => { axios.get(url).then(response => {
self.licenseData = response.data self.licenseData = response.data
}) })