diff --git a/client/src/App.vue b/client/src/App.vue index 4317fd11..28de0e9a 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -259,7 +259,10 @@ watch(useRoute(), (r) => { // @ts-ignore contentContainer.value!.$el.style.overflowY = "hidden"; if (r.path == '/quicktag') showSide(); - if (r.path == '/tageditor') footer.value = true; + if (r.path == '/tageditor') { + hideSide(); + footer.value = true; + } }); // Show again scrollbar after transition diff --git a/client/src/components/PlayerBar.vue b/client/src/components/PlayerBar.vue index eabc626b..f2157475 100644 --- a/client/src/components/PlayerBar.vue +++ b/client/src/components/PlayerBar.vue @@ -3,8 +3,24 @@