Skip to content

Commit

Permalink
views: WidgetsView: Add URLVideoPlayer widget
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Oct 16, 2023
1 parent cc8467b commit cc73ac3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/views/WidgetsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<template v-if="widget.component === WidgetType.MiniWidgetsBar">
<MiniWidgetsBar :widget="widget" />
</template>
<template v-if="widget.component === WidgetType.URLVideoPlayer">
<URLVideoPlayer :widget="widget" />
</template>
<template v-if="widget.component === WidgetType.VideoPlayer">
<VideoPlayer :widget="widget" />
</template>
Expand Down Expand Up @@ -65,6 +68,7 @@ import IFrame from '../components/widgets/IFrame.vue'
import Indicators from '../components/widgets/Indicators.vue'
import Map from '../components/widgets/Map.vue'
import MiniWidgetsBar from '../components/widgets/MiniWidgetsBar.vue'
import URLVideoPlayer from '../components/widgets/URLVideoPlayer.vue'
import VideoPlayer from '../components/widgets/VideoPlayer.vue'
const store = useWidgetManagerStore()
Expand Down

0 comments on commit cc73ac3

Please sign in to comment.