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:
John Molakvoæ 2024-03-05 10:34:02 +01:00 committed by GitHub
commit 799c6dede1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long