Browse Source

fix(pagination): keys

j8
Hristo Terezov 4 years ago
parent
commit
07a69ba040
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/filmstrip/components/web/Filmstrip.js

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

243
             return `empty-${index}`;
243
             return `empty-${index}`;
244
         }
244
         }
245
 
245
 
246
-        return _remoteParticipants[_remoteParticipantsLength - index - 1];
246
+        return _remoteParticipants[index];
247
     }
247
     }
248
 
248
 
249
     _gridItemKey: Object => string;
249
     _gridItemKey: Object => string;

Loading…
Cancel
Save