File tree Expand file tree Collapse file tree 6 files changed +17
-7
lines changed Expand file tree Collapse file tree 6 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -96,27 +96,27 @@ export const Body = ({s}: StoreProp) => {
9696 < article ref = { articleRef } onScroll = { handleScroll } >
9797 < StoreView s = { s } />
9898 { arrayMap ( storeIds , ( storeId ) => (
99- < StoreView storeId = { storeId } key = { storeId } s = { s } />
99+ < StoreView storeId = { storeId } s = { s } key = { storeId } />
100100 ) ) }
101101 < MetricsView s = { s } />
102102 { arrayMap ( metricsIds , ( metricsId ) => (
103- < MetricsView metricsId = { metricsId } key = { metricsId } s = { s } />
103+ < MetricsView metricsId = { metricsId } s = { s } key = { metricsId } />
104104 ) ) }
105105 < IndexesView s = { s } />
106106 { arrayMap ( indexesIds , ( indexesId ) => (
107- < IndexesView indexesId = { indexesId } key = { indexesId } s = { s } />
107+ < IndexesView indexesId = { indexesId } s = { s } key = { indexesId } />
108108 ) ) }
109109 < RelationshipsView s = { s } />
110110 { arrayMap ( relationshipsIds , ( relationshipsId ) => (
111111 < RelationshipsView
112112 relationshipsId = { relationshipsId }
113- key = { relationshipsId }
114113 s = { s }
114+ key = { relationshipsId }
115115 />
116116 ) ) }
117117 < QueriesView s = { s } />
118118 { arrayMap ( queriesIds , ( queriesId ) => (
119- < QueriesView queriesId = { queriesId } key = { queriesId } s = { s } />
119+ < QueriesView queriesId = { queriesId } s = { s } key = { queriesId } />
120120 ) ) }
121121 </ article >
122122 ) ;
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ const IndexView = ({
3030 indexId = { indexId }
3131 sliceId = { sliceId }
3232 s = { s }
33+ key = { sliceId }
3334 />
3435 ) ) }
3536 </ Details >
@@ -82,6 +83,7 @@ export const IndexesView = ({
8283 indexesId = { indexesId }
8384 indexId = { indexId }
8485 s = { s }
86+ key = { indexId }
8587 />
8688 ) ) }
8789 </ Details >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export const MetricsView = ({
4343 </ thead >
4444 < tbody >
4545 { arrayMap ( metricIds , ( metricId ) => (
46- < MetricRow metrics = { metrics } metricId = { metricId } />
46+ < MetricRow metrics = { metrics } metricId = { metricId } key = { metricId } />
4747 ) ) }
4848 </ tbody >
4949 </ table >
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export const QueriesView = ({
7777 queriesId = { queriesId }
7878 queryId = { queryId }
7979 s = { s }
80+ key = { queryId }
8081 />
8182 ) ) }
8283 </ Details >
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export const RelationshipsView = ({
6161 relationshipsId = { relationshipsId }
6262 relationshipId = { relationshipId }
6363 s = { s }
64+ key = { relationshipId }
6465 />
6566 ) ) }
6667 </ Details >
Original file line number Diff line number Diff line change @@ -102,7 +102,13 @@ export const StoreView = ({
102102 >
103103 < ValuesView storeId = { storeId } store = { store } s = { s } />
104104 { sortedIdsMap ( tableIds , ( tableId ) => (
105- < TableView store = { store } storeId = { storeId } tableId = { tableId } s = { s } />
105+ < TableView
106+ store = { store }
107+ storeId = { storeId }
108+ tableId = { tableId }
109+ s = { s }
110+ key = { tableId }
111+ />
106112 ) ) }
107113 </ Details >
108114 ) ;
You can’t perform that action at this time.
0 commit comments