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 authored and genglert committed Feb 9, 2021
1 parent 58c4098 commit d496850
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# The command "creme_uninstall" was broken.
# Some typo in french translations were fixed.
# Apps:
* Activities:
- Fix an issue with allDay value when resizing a event in the calendar
* Geolocation :
- Fix local path issue with CSVPopulator on windows systems

Expand Down
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 d496850

Please sign in to comment.