This commit is contained in:
Amir Omidi
2019-09-16 15:53:59 -07:00
committed by Karl Burtram
parent 3c17ac1333
commit c2727264ad

View File

@@ -115,7 +115,10 @@ export async function getResultsString(provider: IGridDataProvider, selection: S
} }
copyString = copyString.concat('\t'); copyString = copyString.concat('\t');
} }
copyString = copyString.concat(eol);
} }
// Removes EoL from the end of the string
copyString = copyString.slice(0, -1 * eol.length);
return copyString; return copyString;
} }