Merge pull request #43989 from nextcloud/fix/breadrcrumbs-not-showing-on-fixed-view-width

Fix/breadrcrumbs not showing on fixed view width
pull/43998/head
John Molakvoæ 2024-03-05 10:34:02 +07: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

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long