This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new 74f17d2 declare var
74f17d2 is described below
commit 74f17d292eec0b7b17d2d91c4b45d8d9ebc5023b
Author: Daniel Gruno <[email protected]>
AuthorDate: Wed Nov 17 19:01:04 2021 +0100
declare var
---
webui/js/source/listview-header.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/webui/js/source/listview-header.js
b/webui/js/source/listview-header.js
index 9e278ec..6fe1813 100644
--- a/webui/js/source/listview-header.js
+++ b/webui/js/source/listview-header.js
@@ -149,7 +149,7 @@ function listview_list_lists(state, json) {
lists.innerHTML = "";
if (isHash(json.lists) && json.lists[current_domain]) {
- lists_sorted = [];
+ let lists_sorted = [];
for (var list in json.lists[current_domain]) {
lists_sorted.push([list, json.lists[current_domain][list]]);
}