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 69782b7 declare before use
69782b7 is described below
commit 69782b788e5d0866ee5146b0516b7148e9813158
Author: Daniel Gruno <[email protected]>
AuthorDate: Wed Nov 17 19:02:40 2021 +0100
declare before use
---
webui/js/source/sidebar-stats.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/webui/js/source/sidebar-stats.js b/webui/js/source/sidebar-stats.js
index 1e4d650..e65ca08 100644
--- a/webui/js/source/sidebar-stats.js
+++ b/webui/js/source/sidebar-stats.js
@@ -54,10 +54,10 @@ async function sidebar_stats(json) {
if (par.name.length == 0) {
par.name = par.email;
}
- pdiv = new HTML('div', {
+ let pdiv = new HTML('div', {
class: "sidebar_stats_participant"
});
- pimg = new HTML('img', {
+ let pimg = new HTML('img', {
class: "gravatar_sm",
src: gravatar_url.format(par.gravatar)
})