Skip to content

Commit

Permalink
Merge pull request #4033 from LibreSign/backport/4029/stable30
Browse files Browse the repository at this point in the history
[stable30] fix: show message when file list is empty
  • Loading branch information
vitormattos authored Nov 25, 2024
2 parents 61c81cb + 0584912 commit e9d2b31
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 e9d2b31

Please sign in to comment.