Skip to content

Commit

Permalink
Fix getAsync() integer warning when clicking on related item
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed Sep 20, 2017
1 parent c7639f3 commit 85d7c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/content/zotero/bindings/relatedbox.xml
Expand Up @@ -183,7 +183,7 @@
var box = document.createElement('box');
box.setAttribute('onclick',
"document.getBindingParent(this).showItem('" + id + "')");
"document.getBindingParent(this).showItem(" + id + ")");
box.setAttribute('class','zotero-clicky');
box.setAttribute('flex','1');
box.appendChild(icon);
Expand Down

0 comments on commit 85d7c01

Please sign in to comment.