Skip to content

Commit 658f7c2

Browse files
committed
fix: Always apply fullscreen styling to sidebar
Signed-off-by: Julius Härtl <jus@bitgrid.net>
1 parent 1397b7d commit 658f7c2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

apps/files/src/views/Sidebar.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,13 +254,19 @@ export default {
254254
key: 'error', // force key to re-render
255255
subtitle: '',
256256
title: '',
257+
class: {
258+
'app-sidebar--full': this.isFullScreen,
259+
},
257260
}
258261
}
259262
// no fileInfo yet, showing empty data
260263
return {
261264
loading: this.loading,
262265
subtitle: '',
263266
title: '',
267+
class: {
268+
'app-sidebar--full': this.isFullScreen,
269+
},
264270
}
265271
},
266272

0 commit comments

Comments
 (0)