Skip to content

Commit

Permalink
fix(calendarview): Fixed #6160
Browse files Browse the repository at this point in the history
  • Loading branch information
carldebilly committed Jun 7, 2021
1 parent 900be1f commit c0c1bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ internal static DateTimeOffset ConvertToDateTime(
{
var calendar = new Calendar
{
Era = era,
//Era = era, -- REMOVE FOR https://github.com/unoplatform/uno/issues/6160
Year = year,
Month = month,
Day = day,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ private void CopyDate(
if (copyEra)
{
// era is always valid.
m_tpCalendar.Era = era;
//m_tpCalendar.Era = era; --- FIX FOR https://github.com/unoplatform/uno/issues/6160
}

if (copyYear)
Expand Down

0 comments on commit c0c1bc5

Please sign in to comment.