Quellcode durchsuchen

fix(SmallVideo): remove invalid character

Removes ' character which should not be there.
j8
paweldomas vor 8 Jahren
Ursprung
Commit
2c002c875d
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      modules/UI/videolayout/SmallVideo.js

+ 1
- 1
modules/UI/videolayout/SmallVideo.js Datei anzeigen

@@ -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,

Laden…
Abbrechen
Speichern