@@ -405,7 +405,7 @@ export const EncodingShelfThread: FC<EncodingShelfThreadProps> = function ({ cha
405
405
406
406
//let triggers = currentTable.derive.triggers;
407
407
let tableList = activeTableThread . map ( ( tableId ) => < div
408
- key = { tableId }
408
+ key = { ` ${ tableId } -table-list-item` }
409
409
className = "table-list-item" >
410
410
< Button variant = "text" sx = { { textTransform : 'none' , padding : 0 , minWidth : 0 } } onClick = { ( ) => { dispatch ( dfActions . setFocusedTable ( tableId ) ) } } >
411
411
< Stack direction = "row" sx = { { fontSize : '12px' } } alignItems = "center" gap = { "2px" } >
@@ -419,7 +419,7 @@ export const EncodingShelfThread: FC<EncodingShelfThreadProps> = function ({ cha
419
419
420
420
let tableCards = activeTableThread . map ( ( tableId ) =>
421
421
< Card
422
- key = { tableId }
422
+ key = { ` ${ tableId } -table-card` }
423
423
variant = 'outlined' sx = { { padding : '2px 0 2px 0' } } >
424
424
< Button variant = "text" sx = { { textTransform : 'none' , padding : 0 , marginLeft : 1 , minWidth : 0 } } onClick = { ( ) => { dispatch ( dfActions . setFocusedTable ( tableId ) ) } } >
425
425
< Stack direction = "row" sx = { { fontSize : '12px' } } alignItems = "center" gap = { "2px" } >
@@ -444,7 +444,7 @@ export const EncodingShelfThread: FC<EncodingShelfThreadProps> = function ({ cha
444
444
let fieldsIdentical = _ . isEqual ( previousActiveFields , currentActiveFields )
445
445
446
446
return < Box
447
- key = { trigger . tableId }
447
+ key = { ` ${ trigger . tableId } -trigger-card` }
448
448
sx = { { padding : 0 , display : 'flex' } } >
449
449
{ /* <SouthIcon sx={{fontSize: "inherit", margin: 'auto 4px'}} /> */ }
450
450
< Box sx = { { minWidth : '1px' , padding : '0px' , width : '17px' , flex : 'none' , display : 'flex' , flexDirection : 'column'
0 commit comments