This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/structures Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
262262 ) ;
263263
264264 return ( { onStartMoving } ) => (
265- < div key = { voiceBroadcastPlayback . infoEvent . getId ( ) } onMouseDown = { onStartMoving } >
265+ < div key = { `vb-playback- ${ voiceBroadcastPlayback . infoEvent . getId ( ) } ` } onMouseDown = { onStartMoving } >
266266 { content }
267267 </ div >
268268 ) ;
@@ -272,7 +272,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
272272 voiceBroadcastPreRecording : VoiceBroadcastPreRecording ,
273273 ) : CreatePipChildren {
274274 return ( { onStartMoving } ) => (
275- < div onMouseDown = { onStartMoving } >
275+ < div key = "vb-pre-recording" onMouseDown = { onStartMoving } >
276276 < VoiceBroadcastPreRecordingPip voiceBroadcastPreRecording = { voiceBroadcastPreRecording } />
277277 </ div >
278278 ) ;
@@ -282,7 +282,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
282282 voiceBroadcastRecording : VoiceBroadcastRecording ,
283283 ) : CreatePipChildren {
284284 return ( { onStartMoving } ) => (
285- < div onMouseDown = { onStartMoving } >
285+ < div key = { `vb-recording- ${ voiceBroadcastRecording . infoEvent . getId ( ) } ` } onMouseDown = { onStartMoving } >
286286 < VoiceBroadcastRecordingPip recording = { voiceBroadcastRecording } />
287287 </ div >
288288 ) ;
You can’t perform that action at this time.
0 commit comments