Related to #308 , stop hiding collections with only 1 element.

This commit is contained in:
vexorian 2021-05-16 07:12:38 -04:00
parent 4ec285fecb
commit 4236867992

View File

@ -305,7 +305,7 @@ module.exports = function ($http, $window, $interval) {
});
for (let k = 0; k < keys.length; k++) {
let key = keys[k];
if (collections[key].length <= 1) {
if ( !(collections[key].length >= 1) ) {
//it's pointless to include it.
continue;
}