mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-12 20:31:36 +00:00
Remove semicolon
This commit is contained in:
parent
35f51f4e98
commit
bfcf4e317f
4 changed files with 19 additions and 19 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue