Update calendar.js

This commit is contained in:
Himanshu 2020-06-17 14:12:44 +05:30 committed by GitHub
parent 443edf209a
commit 16f5e48fcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,7 +79,7 @@ frappe.views.CalendarView = class CalendarView extends frappe.views.ListView {
start: doc.start_date_field,
end: doc.end_date_field,
title: doc.subject_field,
allDay = doc.all_day ? 1 : 0
allDay: doc.all_day ? 1 : 0
}
});
resolve(options);