fix(livestreaming): window.open params

The target parameter from window.open was missing which was causing
reload in electron.
This commit is contained in:
Hristo Terezov 2020-04-03 16:15:28 -05:00
parent dbbdcb0b00
commit 9b5f135dae
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class StreamKeyForm extends AbstractStreamKeyForm<Props> {
* @returns {void} * @returns {void}
*/ */
_onOpenHelp() { _onOpenHelp() {
window.open(this.helpURL, 'noopener'); window.open(this.helpURL, '_blank', 'noopener');
} }
} }