mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 08:39:16 +02:00
Fix #696: Embed component name that could lead to issue when developping on OSX
This commit is contained in:
parent
2f100ab9a7
commit
c15b4381bb
3 changed files with 4 additions and 3 deletions
1
changes/changelog.d/696.bugfix
Normal file
1
changes/changelog.d/696.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fixed Embed component name that could lead to issue when developping on OSX (#696)
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
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
|
||||||
/* eslint-disable no-new */
|
/* eslint-disable no-new */
|
||||||
new Vue({
|
new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
template: '<Embed/>',
|
template: '<EmbedFrame/>',
|
||||||
components: { Embed }
|
components: { EmbedFrame }
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue