mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Update notif list warning when importing from a list (#648)
This commit is contained in:
parent
0cb15121e5
commit
32c5c4d741
1 changed files with 2 additions and 2 deletions
|
@ -187,13 +187,13 @@ module.exports = Marionette.Layout.extend({
|
||||||
|
|
||||||
_importSelected : function() {
|
_importSelected : function() {
|
||||||
var selected = this.importGrid.getSelectedModels();
|
var selected = this.importGrid.getSelectedModels();
|
||||||
console.log(selected);
|
// console.log(selected);
|
||||||
var promise = MoviesCollection.importFromList(selected);
|
var promise = MoviesCollection.importFromList(selected);
|
||||||
this.ui.importSelected.spinForPromise(promise);
|
this.ui.importSelected.spinForPromise(promise);
|
||||||
this.ui.importSelected.addClass('disabled');
|
this.ui.importSelected.addClass('disabled');
|
||||||
|
|
||||||
Messenger.show({
|
Messenger.show({
|
||||||
message : "Importing {0} movies. This can take multiple minutes depending on how many movies should be imported. Don't close this browser window until it is finished!".format(selected.length),
|
message : "Importing {0} movies. Don't close this browser window until it has finished".format(selected.length),
|
||||||
hideOnNavigate : false,
|
hideOnNavigate : false,
|
||||||
hideAfter : 30,
|
hideAfter : 30,
|
||||||
type : "error"
|
type : "error"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue