mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 18:22:34 -05:00
fix off by 1 error (#6886)
This commit is contained in:
@@ -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>';
|
||||
|
||||
Reference in New Issue
Block a user