Don't break install plugin on failure
This commit is contained in:
parent
cbdd81da96
commit
81ed2de85c
|
@ -145,7 +145,11 @@ export class PluginSearchComponent implements OnInit {
|
|||
plugin.installed = true
|
||||
},
|
||||
|
||||
error: err => this.notifier.error(err.message)
|
||||
error: err => {
|
||||
this.installing[plugin.npmName] = false
|
||||
|
||||
this.notifier.error(err.message)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user