Skip to content

Commit

Permalink
Merge pull request #4032 from LibreSign/backport/4029/stable29
Browse files Browse the repository at this point in the history
[stable29] fix: show message when file list is empty
  • Loading branch information
vitormattos authored Nov 25, 2024
2 parents 1705f45 + 0db44c6 commit 21a20f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/FilesList/FilesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export default {
return this.dirContentsFiltered
},
isEmptyDir() {
return this.filesStore.files.size === 0
return Object.keys(this.filesStore.files).length === 0
},
isRefreshing() {
return !this.isEmptyDir
Expand Down

0 comments on commit 21a20f4

Please sign in to comment.