Sfoglia il codice sorgente

fix(pagination): keys

j8
Hristo Terezov 3 anni fa
parent
commit
07a69ba040
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      react/features/filmstrip/components/web/Filmstrip.js

+ 1
- 1
react/features/filmstrip/components/web/Filmstrip.js Vedi File

@@ -243,7 +243,7 @@ class Filmstrip extends PureComponent <Props> {
243 243
             return `empty-${index}`;
244 244
         }
245 245
 
246
-        return _remoteParticipants[_remoteParticipantsLength - index - 1];
246
+        return _remoteParticipants[index];
247 247
     }
248 248
 
249 249
     _gridItemKey: Object => string;

Loading…
Annulla
Salva