mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
fix: fixed breadcrumbs not showing due to viewport width
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
This commit is contained in:
parent
80e4193d4f
commit
e0e51aed5d
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ export default defineComponent({
|
|||
|
||||
// Hide breadcrumbs if an upload is ongoing on arrow screens
|
||||
shouldShowBreadcrumbs(): boolean {
|
||||
return this.filesListWidth < 768 && !this.isUploadInProgress
|
||||
return this.filesListWidth > 768 && !this.isUploadInProgress
|
||||
},
|
||||
|
||||
// used to show the views icon for the first breadcrumb
|
||||
|
|
|
|||
Loading…
Reference in a new issue