mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Auto reload when server has been updated
New: Updating will reload UI on navigation
This commit is contained in:
@@ -19,7 +19,7 @@ define(
|
||||
|
||||
series: function () {
|
||||
this.setTitle('NzbDrone');
|
||||
AppLayout.mainRegion.show(new SeriesIndexLayout());
|
||||
this.showMainRegion(new SeriesIndexLayout());
|
||||
},
|
||||
|
||||
seriesDetails: function (query) {
|
||||
@@ -28,7 +28,7 @@ define(
|
||||
if (series.length !== 0) {
|
||||
var targetSeries = series[0];
|
||||
this.setTitle(targetSeries.get('title'));
|
||||
AppLayout.mainRegion.show(new SeriesDetailsLayout({ model: targetSeries }));
|
||||
this.showMainRegion(new SeriesDetailsLayout({ model: targetSeries }));
|
||||
}
|
||||
else {
|
||||
this.showNotFound();
|
||||
|
Reference in New Issue
Block a user