This commit is contained in:
Marco Castelluccio 2016-09-08 12:25:44 +02:00
Родитель d017de9399
Коммит 13e38a6c0b
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -53,7 +53,7 @@ function getComparison() {
let table = document.getElementById('table'); let table = document.getElementById('table');
for (let bug of bugs) { bugs.forEach(bug =>
fetch('https://bugzilla.mozilla.org/rest/bug/' + bug + '?include_fields=cf_crash_signature') fetch('https://bugzilla.mozilla.org/rest/bug/' + bug + '?include_fields=cf_crash_signature')
.then(response => response.json()) .then(response => response.json())
.then(data => { .then(data => {
@ -98,8 +98,8 @@ function getComparison() {
} }
evolution.appendChild(result); evolution.appendChild(result);
}); })
} );
}); });
} }