Fix check when there are no bugs in common

This commit is contained in:
Marco Castelluccio 2017-01-30 13:24:08 +00:00
Родитель 8f3e5232ec
Коммит 5159905083
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -123,8 +123,9 @@ onLoad
document.getElementById('getCommonLandings').onclick = function() {
getCommonLandings()
.then(bugs => {
if (bugs.length === 0) {
if (bugs.size === 0) {
document.getElementById('results').textContent = 'None';
return;
}
let ul = document.createElement('ul');