mirror of
https://github.com/nextcloud/server.git
synced 2026-04-25 08:08:33 -04:00
Merge pull request #43989 from nextcloud/fix/breadrcrumbs-not-showing-on-fixed-view-width
Fix/breadrcrumbs not showing on fixed view width
This commit is contained in:
commit
799c6dede1
3 changed files with 4 additions and 4 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
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue