This commit is contained in:
Amir Omidi
2019-09-16 15:53:59 -07:00
committed by GitHub
parent 6f06c18014
commit 16481927e8

View File

@@ -115,7 +115,10 @@ export async function getResultsString(provider: IGridDataProvider, selection: S
}
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;
}