summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index f07f5810a..2179ae8e6 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -55,7 +55,7 @@ export default Vue.extend({
},
methods: {
stopPlaying() {
- this.$store.commit(MUTATIONS.SET_PLAYING_ITEM, { item: undefined })
+ this.$store.commit(MUTATIONS.SET_PLAYING_ITEM, undefined)
},
stopVideo() {
const videoElements = document.getElementsByTagName('video')
@@ -82,6 +82,7 @@ export default Vue.extend({
#content-display {
display: flex;
flex-direction: row;
+ height: 100%;
}
#content-display.playing {