Sfoglia il codice sorgente

fix(livestreaming): window.open params

The target parameter from window.open was missing which was causing
reload in electron.
master
Hristo Terezov 5 anni fa
parent
commit
9b5f135dae

+ 1
- 1
react/features/recording/components/LiveStream/web/StreamKeyForm.js Vedi File

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

Loading…
Annulla
Salva