issue-#1 #5

Merged
jonny merged 18 commits from issue-#1 into master 2020-12-16 15:48:56 +00:00
Showing only changes of commit 09470d125a - Show all commits

View File

@ -63,7 +63,7 @@
response.json().then(function(data) {
if (data != 'EMPTY') {
var optionHTML = '';
for (var chart of data.Releases) {
for (var chart of data) {
optionHTML += '<option value="' + chart.name + '">' + chart.name + '</option>';
}
chartSelect.innerHTML = optionHTML;