Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/62f15d4d96ffe59caa7433a67539441b01246092/NzbDrone.Backbone/Calendar/CalendarItemView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Backbone/Calendar/CalendarItemView.js

17 lines
389 B

'use strict';
define([
'app',
'Calendar/CalendarCollection'
], function () {
NzbDrone.Calendar.CalendarItemView = Backbone.Marionette.ItemView.extend({
template: 'Calendar/CalendarItemTemplate',
tagName: 'div',
className: 'event',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
})
})