mirror of https://github.com/lidarr/Lidarr
Fixed: Calendar not showing some items on the last day of the week
This commit is contained in:
parent
6fd7a64330
commit
acaa07c69d
|
@ -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');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue