Remove semicolon

This commit is contained in:
mfcar 2024-05-04 20:31:39 +01:00
parent 35f51f4e98
commit bfcf4e317f
No known key found for this signature in database
4 changed files with 19 additions and 19 deletions

View file

@ -11,7 +11,7 @@
</template>
<script>
import TranscriptionLine from "./TranscriptionLine.vue";
import TranscriptionLine from "./TranscriptionLine.vue"
export default {
components: {
@ -19,14 +19,14 @@ export default {
},
watch: {
trackElement() {
this.setCues();
this.setCues()
}
},
data() {
return {
cues: [],
trackElement: null
};
}
},
mounted() {
this.init()
@ -45,7 +45,7 @@ export default {
this.cues = this.trackElement.track.cues
}
},
};
}
</script>
<style>
#transcription-panel {