Skip to content

Commit

Permalink
Fix merging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ToukL committed Jun 18, 2024
1 parent d1b93bb commit e89878f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/assets/js/videos/components/settingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export default {
},
handleDisableJumpByFrame() {
this.enableJumpByFrame = false;
},
handleMuteVideo() {
this.muteVideo = true;
},
Expand Down Expand Up @@ -122,7 +123,7 @@ export default {
enableJumpByFrame(show) {
this.$emit('update', 'enableJumpByFrame', show);
Settings.set('enableJumpByFrame', show);
}
},
muteVideo(show) {
this.$emit('update', 'muteVideo', show);
Settings.set('muteVideo', show);
Expand Down

0 comments on commit e89878f

Please sign in to comment.