mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -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) {
|
for (const row of d.resultSubset.rows) {
|
||||||
htmlString += '<tr>';
|
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 += '<td>' + escape(row[i].displayValue) + '</td>';
|
||||||
}
|
}
|
||||||
htmlString += '</tr>';
|
htmlString += '</tr>';
|
||||||
|
|||||||
Reference in New Issue
Block a user