diff --git a/api/web/src/components/CloudTAK/util/Video.vue b/api/web/src/components/CloudTAK/util/Video.vue
index c401fa38f..8309b1ab4 100644
--- a/api/web/src/components/CloudTAK/util/Video.vue
+++ b/api/web/src/components/CloudTAK/util/Video.vue
@@ -1,16 +1,16 @@
@@ -21,17 +21,17 @@ import 'video.js/dist/video-js.css';
export default {
name: 'CoTVideo',
- data: function() {
- return {
- player: false
- }
- },
props: {
video: {
type: String,
required: true
}
},
+ data: function() {
+ return {
+ player: false
+ }
+ },
unmounted: function() {
this.player.dispose();
},