Skip to content
This repository was archived by the owner on Aug 25, 2020. It is now read-only.

Commit 77c1174

Browse files
author
Adam
committed
use correct comparison operator
1 parent 0e27217 commit 77c1174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

request.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
var parsed = JSON.parse(response);
3535
for(var i=0; i<parsed.length; i++){
3636
var item = document.createElement("li");
37-
if(parsed[i].labels[0].name === 'duplicate'){
37+
if(parsed[i].labels[0].name != 'duplicate'){
3838
item.innerHTML = '<span class="glyphicon glyphicon-ok-sign green" aria-hidden="true"></span><a href='+parsed[i].html_url+'>'+parsed[i].title+'</a>';
3939
items.appendChild(item);
4040
}

0 commit comments

Comments
 (0)