1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-07 09:31:31 +01:00

make sure there isn't more content after newline

This commit is contained in:
Kyle Spearrin 2019-03-21 10:05:31 -04:00
parent 7bd0733b88
commit aebd1b57fc

View File

@ -29,8 +29,11 @@ export class FlexCopyDirective {
let stringEndPos = text.length;
const newLinePos = text.search(/(?:\r\n|\r|\n)/);
if (newLinePos > -1) {
const otherPart = text.substr(newLinePos).trim();
if (otherPart === '') {
stringEndPos = newLinePos;
}
}
copyText += text.substring(0, stringEndPos);
}
this.platformUtilsService.copyToClipboard(copyText, { window: window });