Merge branch '696-yarn-build-osx' into 'master'

Fix #696: Embed component name that could lead to issue when developping on OSX

See merge request funkwhale/funkwhale!587
This commit is contained in:
Eliot Berriot 2019-02-07 16:28:57 +01:00
commit d702f8f69f
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1 @@
Fixed Embed component name that could lead to issue when developping on OSX (#696)

View File

@ -1,6 +1,6 @@
import Vue from 'vue'
import Embed from './Embed'
import EmbedFrame from './EmbedFrame'
import VuePlyr from 'vue-plyr'
Vue.use(VuePlyr)
@ -10,6 +10,6 @@ Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<Embed/>',
components: { Embed }
template: '<EmbedFrame/>',
components: { EmbedFrame }
})