File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
415
415
continue ;
416
416
}
417
417
418
- namerow = tab . insertRow ( i * 4 + 1 ) ;
418
+ namerow = tab . insertRow ( - 1 ) ;
419
419
420
420
nmcell = namerow . insertCell ( 0 ) ;
421
421
urlcell = namerow . insertCell ( 1 ) ;
@@ -429,7 +429,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
429
429
repocell . innerHTML = repo_translator ( package [ "repository_link" ] ) ;
430
430
//pypicell.innerHTML = pypi_translator(package["package_name"]); // FIXME: https://github.com/pyOpenSci/pyopensci.github.io/issues/390
431
431
432
- descrow = tab . insertRow ( i * 4 + 2 ) ;
432
+ descrow = tab . insertRow ( - 1 ) ;
433
433
descrow . insertCell ( 0 ) . innerHTML = "" ;
434
434
desccell = descrow . insertCell ( 1 ) ;
435
435
desccell . colSpan = "3" ;
@@ -444,7 +444,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
444
444
}
445
445
}
446
446
447
- maintrow = tab . insertRow ( i * 4 + 3 ) ;
447
+ maintrow = tab . insertRow ( - 1 ) ;
448
448
maintrow . insertCell ( 0 ) . innerHTML = "" ;
449
449
maintcell = maintrow . insertCell ( 1 ) ;
450
450
maintcell . colSpan = "3" ;
Original file line number Diff line number Diff line change @@ -153,6 +153,9 @@ function ghuser_translator(fullname, ghname) {
153
153
return 'None' ;
154
154
} else {
155
155
var urltext = 'https://github.com/' + ghname ;
156
+ if ( fullname === null ) {
157
+ fullname = ghname ;
158
+ }
156
159
return '<a href="' + urltext + '">' + fullname + '</a>' ;
157
160
}
158
161
}
You can’t perform that action at this time.
0 commit comments