Skip to content

Commit

Permalink
fix off by 1 error (microsoft#6886)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Dresser authored Aug 22, 2019
1 parent 7beddeb commit 26a22fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ export class SQLFuture extends Disposable implements FutureInternal {
}
for (const row of d.resultSubset.rows) {
htmlString += '<tr>';
for (let i = 0; i <= columns.length; i++) {
for (let i = 0; i < columns.length; i++) {
htmlString += '<td>' + escape(row[i].displayValue) + '</td>';
}
htmlString += '</tr>';
Expand Down

0 comments on commit 26a22fa

Please sign in to comment.