From f522da19b2ed68dbf5f334e06e41681b708f2d05 Mon Sep 17 00:00:00 2001 From: Thamara Andrade Date: Thu, 30 Jul 2020 21:16:05 -0300 Subject: [PATCH] Swap position for overall and month balance on day view (#331) * Swap position for overall and month balance on day view Closes #328 * Adding changelog entry --- changelog.txt | 1 + js/classes/Calendar.js | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9404c55af..d3407a0f3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,7 @@ 1.5.6 (in development) ------------------------------------------------------------------------ - Fix: Fixed behavior of calendar when moving to next/previous month when current day is in the range of 29-31. +- Enhancement: [#328] Swap position for overall and month balance on day view Who built 1.5.6: - thamara diff --git a/js/classes/Calendar.js b/js/classes/Calendar.js index 77a129673..b0af7e2eb 100644 --- a/js/classes/Calendar.js +++ b/js/classes/Calendar.js @@ -1010,15 +1010,15 @@ class DayCalendar extends Calendar { return '
' + '
' + '
' + - '
Overall Balance
' + - '
' + - '
' + + '
Month Balance
' + + '
' + + '
' + '
' + '
' + '
' + - '
Month Balance
' + - '
' + - '
' + + '
Overall Balance
' + + '
' + + '
' + '' + ''; }