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
415415 continue ;
416416 }
417417
418- namerow = tab . insertRow ( i * 4 + 1 ) ;
418+ namerow = tab . insertRow ( - 1 ) ;
419419
420420 nmcell = namerow . insertCell ( 0 ) ;
421421 urlcell = namerow . insertCell ( 1 ) ;
@@ -429,7 +429,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
429429 repocell . innerHTML = repo_translator ( package [ "repository_link" ] ) ;
430430 //pypicell.innerHTML = pypi_translator(package["package_name"]); // FIXME: https://github.com/pyOpenSci/pyopensci.github.io/issues/390
431431
432- descrow = tab . insertRow ( i * 4 + 2 ) ;
432+ descrow = tab . insertRow ( - 1 ) ;
433433 descrow . insertCell ( 0 ) . innerHTML = "" ;
434434 desccell = descrow . insertCell ( 1 ) ;
435435 desccell . colSpan = "3" ;
@@ -444,7 +444,7 @@ <h2 id="new-affil-reviewer">I am a new reviewer<a class="paralink" href="#new-af
444444 }
445445 }
446446
447- maintrow = tab . insertRow ( i * 4 + 3 ) ;
447+ maintrow = tab . insertRow ( - 1 ) ;
448448 maintrow . insertCell ( 0 ) . innerHTML = "" ;
449449 maintcell = maintrow . insertCell ( 1 ) ;
450450 maintcell . colSpan = "3" ;
Original file line number Diff line number Diff line change @@ -153,6 +153,9 @@ function ghuser_translator(fullname, ghname) {
153153 return 'None' ;
154154 } else {
155155 var urltext = 'https://github.com/' + ghname ;
156+ if ( fullname === null ) {
157+ fullname = ghname ;
158+ }
156159 return '<a href="' + urltext + '">' + fullname + '</a>' ;
157160 }
158161}
You can’t perform that action at this time.
0 commit comments