Skip to content
Snippets Groups Projects
Commit d702f8f6 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

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
parents 949c7630 c15b4381
No related branches found
No related tags found
No related merge requests found
Fixed Embed component name that could lead to issue when developping on OSX (#696)
File moved
import Vue from 'vue' import Vue from 'vue'
import Embed from './Embed' import EmbedFrame from './EmbedFrame'
import VuePlyr from 'vue-plyr' import VuePlyr from 'vue-plyr'
Vue.use(VuePlyr) Vue.use(VuePlyr)
...@@ -10,6 +10,6 @@ Vue.config.productionTip = false ...@@ -10,6 +10,6 @@ Vue.config.productionTip = false
/* eslint-disable no-new */ /* eslint-disable no-new */
new Vue({ new Vue({
el: '#app', el: '#app',
template: '<Embed/>', template: '<EmbedFrame/>',
components: { Embed } components: { EmbedFrame }
}) })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment