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> {
262
262
) ;
263
263
264
264
return ( { onStartMoving } ) => (
265
- < div key = { voiceBroadcastPlayback . infoEvent . getId ( ) } onMouseDown = { onStartMoving } >
265
+ < div key = { `vb-playback- ${ voiceBroadcastPlayback . infoEvent . getId ( ) } ` } onMouseDown = { onStartMoving } >
266
266
{ content }
267
267
</ div >
268
268
) ;
@@ -272,7 +272,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
272
272
voiceBroadcastPreRecording : VoiceBroadcastPreRecording ,
273
273
) : CreatePipChildren {
274
274
return ( { onStartMoving } ) => (
275
- < div onMouseDown = { onStartMoving } >
275
+ < div key = "vb-pre-recording" onMouseDown = { onStartMoving } >
276
276
< VoiceBroadcastPreRecordingPip voiceBroadcastPreRecording = { voiceBroadcastPreRecording } />
277
277
</ div >
278
278
) ;
@@ -282,7 +282,7 @@ class PipContainerInner extends React.Component<IProps, IState> {
282
282
voiceBroadcastRecording : VoiceBroadcastRecording ,
283
283
) : CreatePipChildren {
284
284
return ( { onStartMoving } ) => (
285
- < div onMouseDown = { onStartMoving } >
285
+ < div key = { `vb-recording- ${ voiceBroadcastRecording . infoEvent . getId ( ) } ` } onMouseDown = { onStartMoving } >
286
286
< VoiceBroadcastRecordingPip recording = { voiceBroadcastRecording } />
287
287
</ div >
288
288
) ;
You can’t perform that action at this time.
0 commit comments