From 645a3dca64a21f900399b7a8bdbe572fccb6ce44 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Wed, 20 Sep 2017 06:55:44 +0100 Subject: [PATCH] Fixed: Add space in confirmation message (#2101) --- src/UI/Wanted/Cutoff/CutoffUnmetLayout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js b/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js index 1ecd55979..1d07b0328 100644 --- a/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js +++ b/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js @@ -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 }); } }, -}); \ No newline at end of file +});