Skip to content

Commit b09bf71

Browse files
arublovskjnldsv
andcommitted
Update apps/files/src/components/BreadCrumbs.vue
Co-authored-by: John Molakvoæ <[email protected]> Signed-off-by: Andrii Rublov <[email protected]>
1 parent 8630397 commit b09bf71

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

apps/files/src/components/BreadCrumbs.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ export default defineComponent({
124124
})
125125
},
126126
127-
uploadInProgress(): boolean {
127+
isUploadInProgress(): boolean {
128128
return this.uploaderStore.queue.length !== 0
129129
},
130130
131+
// Hide breadcrumbs if an upload is ongoing on arrow screens
131132
shouldShowBreadcrumbs(): boolean {
132-
return this.filesListWidth < 768 && !this.uploadInProgress
133-
},
134-
133+
return this.filesListWidth < 768 && !this.isUploadInProgress
134+
},
135135
},
136136
137137
methods: {

0 commit comments

Comments
 (0)