don't show no files yet when mask is in place, fixes #13141
This commit is contained in:
parent
5ce295907f
commit
0bb91cfcf3
1 changed files with 3 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue