diff options
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/views/Sidebar.vue | 6 |
1 files changed, 6 insertions, 0 deletions
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, + }, } }, |