diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e680ef4b3e..80f9d9c30c 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1696,7 +1696,9 @@ } } else { this.$el.find('#filestable thead th').toggleClass('hidden', this.isEmpty); - this.$el.find('#emptycontent').toggleClass('hidden', !this.isEmpty); + if (!this.$el.find('.mask').exists()) { + this.$el.find('#emptycontent').toggleClass('hidden', !this.isEmpty); + } this.$el.find('.nofilterresults').addClass('hidden'); } },