mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Add space in confirmation message (#2101)
This commit is contained in:
parent
2b2a1265ad
commit
645a3dca64
@ -229,11 +229,11 @@ module.exports = Marionette.Layout.extend({
|
||||
},
|
||||
|
||||
_searchMissing : function() {
|
||||
if (window.confirm('Are you sure you want to search for {0} filtered missing movies?'.format(this.collection.state.totalRecords) +
|
||||
if (window.confirm('Are you sure you want to search for {0} filtered missing movies? '.format(this.collection.state.totalRecords) +
|
||||
'One API request to each indexer will be used for each movie. ' + 'This cannot be stopped once started.')) {
|
||||
CommandController.Execute('cutOffUnmetMoviesSearch', { name : 'cutOffUnmetMoviesSearch',
|
||||
filterKey : this.collection.state.filterKey,
|
||||
filterValue : this.collection.state.filterValue });
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user