mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
Fixed: Calendar not showing some items on the last day of the week
This commit is contained in:
@@ -107,8 +107,8 @@ module.exports = Marionette.ItemView.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
_getEvents : function(view) {
|
_getEvents : function(view) {
|
||||||
var start = view.start.toISOString();
|
var start = moment(view.start.toISOString()).toISOString();
|
||||||
var end = view.end.toISOString();
|
var end = moment(view.end.toISOString()).toISOString();
|
||||||
|
|
||||||
this.$el.fullCalendar('removeEvents');
|
this.$el.fullCalendar('removeEvents');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user