merge-requests/150/merge
christian 2021-10-24 21:23:40 -04:00 zatwierdzone przez Matthew Chambers
rodzic 7830e52978
commit b199c4c4fa
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -52,8 +52,10 @@ function renderRoster(callRoster, rosterSettings)
var visibleCount = visibleCallList.length;
var huntedCount = 0;
if (typeof (obj) !== "undefined" && typeof (obj.callObj) !== "undefined" && typeof (obj.callObj.hunting) !== "undefined")
{ huntedCount = visibleCallList.filter(obj => Object.keys().length > 0).length }
if (typeof (obj) !== "undefined")
{
huntedCount = visibleCallList.filter(obj => Object.keys().length > 0).length
}
var countParts = [];
if (totalCount != visibleCount)