mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
fix array access issues with map iterators
This commit is contained in:
@@ -102,7 +102,7 @@ export async function getResultsString(provider: IGridDataProvider, selection: S
|
||||
|
||||
let copyString = '';
|
||||
if (includeHeaders) {
|
||||
copyString = [...headers.values()].join('\t').concat(eol);
|
||||
copyString = Array.from(headers.values()).join('\t').concat(eol);
|
||||
}
|
||||
|
||||
const rowKeys = [...headers.keys()];
|
||||
|
||||
Reference in New Issue
Block a user