From 09470d125a904a374c6f284d40c87ac838a9f390 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine <57888439+jervine-gogo@users.noreply.github.com> Date: Wed, 16 Dec 2020 13:39:16 +0800 Subject: [PATCH] List charts from namespace correctly --- templates/nameChartSelect.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/nameChartSelect.html b/templates/nameChartSelect.html index 4171be7..2b6c06c 100644 --- a/templates/nameChartSelect.html +++ b/templates/nameChartSelect.html @@ -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 += ''; } chartSelect.innerHTML = optionHTML;