Parcourir la source

fix(pagination): keys

master
Hristo Terezov il y a 4 ans
Parent
révision
07a69ba040
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      react/features/filmstrip/components/web/Filmstrip.js

+ 1
- 1
react/features/filmstrip/components/web/Filmstrip.js Voir le fichier

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

Chargement…
Annuler
Enregistrer