Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Refs #10 #creme-2.1 Fix an issue with allDay value when resizing a ev…
Browse files Browse the repository at this point in the history
…ent in the calendar
  • Loading branch information
joehybird committed Nov 25, 2020
1 parent 0d1d467 commit ee97461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion creme/activities/static/activities/js/activities.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ creme.activities.calendar.updater = function(update_url, event, dayDelta, minute
{id: event.id,
start: event.start.getTime(),
end: event.end.getTime(),
allDay: allDay
allDay: allDay || false
})
.onFail(function(event, data, error) {
if (error.status === 403) {
Expand Down

0 comments on commit ee97461

Please sign in to comment.