From ac3292c498a08ce6cbc9a1ff33403ca2b7034407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 13 Jul 2023 22:13:34 +0200 Subject: [PATCH] fix: Always apply fullscreen styling to sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- apps/files/src/views/Sidebar.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index ff6e1a52b43..f173ff3333a 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -254,6 +254,9 @@ export default { key: 'error', // force key to re-render subtitle: '', title: '', + class: { + 'app-sidebar--full': this.isFullScreen, + }, } } // no fileInfo yet, showing empty data @@ -261,6 +264,9 @@ export default { loading: this.loading, subtitle: '', title: '', + class: { + 'app-sidebar--full': this.isFullScreen, + }, } },