Compare commits

...

3 Commits
v29 ... main

Author SHA1 Message Date
Magnus Åhall
60f20a754f Removed unnecessary debug log 2024-04-19 18:44:12 +02:00
Magnus Åhall
c132f495b4 Added back a deleted URL character 2024-04-19 18:42:41 +02:00
Magnus Åhall
bcce516c66 Fixed calendar aspect ratio to my liking 2024-04-19 18:36:41 +02:00

View File

@ -1035,7 +1035,6 @@ 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)
@ -1087,6 +1086,7 @@ class ScheduleCalendarTab extends Component {
minute: '2-digit', minute: '2-digit',
}, },
firstDay: 1, firstDay: 1,
aspectRatio: 2.5,
}); });
this.calendar.render(); this.calendar.render();
} }
@ -1109,6 +1109,7 @@ class ScheduleCalendarTab extends Component {
}) })
successCallback(fullcalendarEvents) successCallback(fullcalendarEvents)
}) })
.catch(err=>failureCallback(err))
} }
} }