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

commit 4ba7a368f37abd025d5bf3271dfd757fd93689f3
Author: Daniel Gruno <[email protected]>
AuthorDate: Sun Nov 21 18:31:41 2021 +0100

    regen JS
---
 webui/js/ponymail.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/webui/js/ponymail.js b/webui/js/ponymail.js
index d74e052..bc4bfb7 100644
--- a/webui/js/ponymail.js
+++ b/webui/js/ponymail.js
@@ -16,7 +16,7 @@
 */
 // THIS IS AN AUTOMATICALLY COMBINED FILE. PLEASE EDIT source/*.js!!
 
-const PONYMAIL_REVISION = "fdd6118";
+const PONYMAIL_REVISION = "786ebf0";
 
 
 
@@ -2008,11 +2008,11 @@ function list_index(state, json) {
     } else {
         let letters = 'abcdefghijklmnopqrstuvwxyz#';
         for (let i = 0; i < letters.length; i++) {
-            letter = letters[i].toUpperCase(); // declared above
+            let xletter = letters[i].toUpperCase(); // declared above
             let li = new HTML('li', {
-                onclick: 'list_index({letter: "%s"});'.format(letter),
-                class: (letter == 'A') ? 'active' : null
-            }, letter);
+                onclick: 'list_index({letter: "%s"});'.format(xletter),
+                class: (xletter == 'A') ? 'active' : null
+            }, xletter);
             lists.inject(li);
         }
     }

Reply via email to