Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/30e66afb20a29a1f18fa4570a4393c0cad8b31cb You should set ROOT_URL correctly, otherwise the web may not work correctly.

Show message when no updates are available

pull/70/head
Mark McDowall 11 years ago
parent e5263f143d
commit 30e66afb20

@ -0,0 +1,10 @@
'use strict';
define(
[
'marionette'
], function (Marionette) {
return Marionette.ItemView.extend({
template: 'System/Update/EmptyViewTemplate'
});
});

@ -0,0 +1 @@
<div>No updates are available</div>

@ -2,9 +2,11 @@
define(
[
'marionette',
'System/Update/UpdateItemView'
], function (Marionette, UpdateItemView) {
'System/Update/UpdateItemView',
'System/Update/EmptyView'
], function (Marionette, UpdateItemView, EmptyView) {
return Marionette.CollectionView.extend({
itemView: UpdateItemView
itemView : UpdateItemView,
emptyView: EmptyView
});
});

Loading…
Cancel
Save