Compare commits

..

No commits in common. "main" and "v29" have entirely different histories.
main ... v29

View File

@ -1035,6 +1035,7 @@ class ScheduleEventListTab extends Component {
if (a.Time > b.Time) return 1 if (a.Time > b.Time) return 1
return 0 return 0
}).map(evt => { }).map(evt => {
console.log(evt)
const dt = evt.Time.split('T') const dt = evt.Time.split('T')
const remind = () => { const remind = () => {
if (evt.RemindMinutes > 0) if (evt.RemindMinutes > 0)
@ -1086,7 +1087,6 @@ class ScheduleCalendarTab extends Component {
minute: '2-digit', minute: '2-digit',
}, },
firstDay: 1, firstDay: 1,
aspectRatio: 2.5,
}); });
this.calendar.render(); this.calendar.render();
} }
@ -1109,7 +1109,6 @@ class ScheduleCalendarTab extends Component {
}) })
successCallback(fullcalendarEvents) successCallback(fullcalendarEvents)
}) })
.catch(err=>failureCallback(err))
} }
} }