Explorar el Código

fix(SmallVideo): remove invalid character

Removes ' character which should not be there.
j8
paweldomas hace 8 años
padre
commit
2c002c875d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/UI/videolayout/SmallVideo.js

+ 1
- 1
modules/UI/videolayout/SmallVideo.js Ver fichero

@@ -565,7 +565,7 @@ SmallVideo.prototype.showDominantSpeakerIndicator = function (show) {
565 565
 
566 566
     let indicatorSpanId = "dominantspeakerindicator";
567 567
     let content = `<i id="indicatoricon"
568
-        '             class="indicatoricon fa fa-bullhorn"></i>`;
568
+                      class="indicatoricon fa fa-bullhorn"></i>`;
569 569
     let indicatorSpan = UIUtil.getVideoThumbnailIndicatorSpan({
570 570
         videoSpanId: this.videoSpanId,
571 571
         indicatorId: indicatorSpanId,

Loading…
Cancelar
Guardar