File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/components/MigrationDetails Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ function Table({ details }) {
222
222
< tr >
223
223
< th style = { { width : 200 } } > Name</ th >
224
224
< th style = { { width : 115 } } > PRs made</ th >
225
- < th style = { { width : 90 } } > # children </ th >
225
+ < th style = { { width : 115 } } > Descendants </ th >
226
226
< th style = { { flex : 1 } } > Immediate Children</ th >
227
227
</ tr >
228
228
</ thead >
@@ -240,6 +240,7 @@ function Row({ children }) {
240
240
const [ collapsed , setState ] = useState ( true ) ;
241
241
const { feedstock, name, status } = children ;
242
242
const immediate = feedstock [ "immediate_children" ] || [ ] ;
243
+ const num_descendants = feedstock [ "num_descendants" ] ;
243
244
const href = feedstock [ "pr_url" ] ;
244
245
const details = feedstock [ "pre_pr_migrator_status" ] ;
245
246
return ( < >
@@ -257,7 +258,7 @@ function Row({ children }) {
257
258
) }
258
259
</ td >
259
260
< td > { TITLES [ status ] } </ td >
260
- < td style = { { textAlign : "center" } } > { immediate . length || null } </ td >
261
+ < td style = { { textAlign : "center" } } > { num_descendants || null } </ td >
261
262
< td >
262
263
{ immediate . map ( ( name , index ) => ( < React . Fragment key = { index } >
263
264
< span
You can’t perform that action at this time.
0 commit comments