Skip to content

Commit

Permalink
reviews, Fix dumpByLabel bug that was omitting initial item in list
Browse files Browse the repository at this point in the history
  • Loading branch information
r12a committed Feb 26, 2020
1 parent 8563af0 commit f28829c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reviews/index.html
Expand Up @@ -352,7 +352,7 @@ <h2 class="notoc">Filter results</h2>
if (! labelFound) continue

out += h2+"\n"
for (var i=1;i<issues.length;i++) {
for (var i=0;i<issues.length;i++) {
var spans = issues[i].querySelectorAll('span')
for (j=0;j<spans.length;j++) {
if (spans[j].title === label) {
Expand Down

0 comments on commit f28829c

Please sign in to comment.