fix(livestreaming): window.open params
The target parameter from window.open was missing which was causing reload in electron.
This commit is contained in:
parent
dbbdcb0b00
commit
9b5f135dae
|
@ -102,7 +102,7 @@ class StreamKeyForm extends AbstractStreamKeyForm<Props> {
|
|||
* @returns {void}
|
||||
*/
|
||||
_onOpenHelp() {
|
||||
window.open(this.helpURL, 'noopener');
|
||||
window.open(this.helpURL, '_blank', 'noopener');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue