You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/09/21 19:16:30 UTC

[incubator-ponymail-foal] branch master updated (a4e8b2f -> 9dbc1f8)

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git.


    from a4e8b2f  Regen JS
     new 5f191c1  don't multiply...
     new 9dbc1f8  regen

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 webui/js/ponymail.js                | 2 +-
 webui/js/source/sidebar-calendar.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

[incubator-ponymail-foal] 01/02: don't multiply...

Posted by hu...@apache.org.
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 5f191c12a14b59c7feabc2449a157324aa6519ea
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Sep 21 14:16:09 2021 -0500

    don't multiply...
---
 webui/js/source/sidebar-calendar.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/js/source/sidebar-calendar.js b/webui/js/source/sidebar-calendar.js
index edbd830..7b4b813 100644
--- a/webui/js/source/sidebar-calendar.js
+++ b/webui/js/source/sidebar-calendar.js
@@ -90,7 +90,7 @@ function renderCalendar(FY, FM, LY, LM, activity = null) {
                 mdiv.setAttribute("class", "sidebar_calendar_month_nothing");
                 mdiv.setAttribute("onclick", "javascript:void(0);");
             } else if (activity && activity[ym]) {
-                let count = activity[ym] * 127;
+                let count = activity[ym];
                 if (count >= 1000) {
                     count = Math.floor(count/1000.0) + "k+";
                 }

[incubator-ponymail-foal] 02/02: regen

Posted by hu...@apache.org.
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 9dbc1f82a22d5aea2698dc5acdb5271f9ae3831b
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Sep 21 14:16:19 2021 -0500

    regen
---
 webui/js/ponymail.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/js/ponymail.js b/webui/js/ponymail.js
index 6062fbb..1ef5d93 100644
--- a/webui/js/ponymail.js
+++ b/webui/js/ponymail.js
@@ -3895,7 +3895,7 @@ function renderCalendar(FY, FM, LY, LM, activity = null) {
                 mdiv.setAttribute("class", "sidebar_calendar_month_nothing");
                 mdiv.setAttribute("onclick", "javascript:void(0);");
             } else if (activity && activity[ym]) {
-                let count = activity[ym] * 127;
+                let count = activity[ym];
                 if (count >= 1000) {
                     count = Math.floor(count/1000.0) + "k+";
                 }