Skip to content

Commit

Permalink
Error dialog: fix printing detail information multiple times
Browse files Browse the repository at this point in the history
The wrong variable was referenced in the loop.
  • Loading branch information
tomka committed Aug 13, 2018
1 parent e1b4251 commit 216e9c9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@
if (i > 0) {
detail_text.appendChild(document.createElement('br'));
}
detail_text.appendChild(document.createTextNode(detail));
detail_text.appendChild(document.createTextNode(detail_lines[i]));
}
} else {
detail_text.appendChild(document.createTextNode(detail));
Expand Down

0 comments on commit 216e9c9

Please sign in to comment.