We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e01b1 commit 7f1a23aCopy full SHA for 7f1a23a
_layouts/default.html
@@ -27,7 +27,7 @@
27
const text = copyText.textContent || copyText.innerText;
28
29
const input = document.createElement('textarea');
30
- input.innerHTML = text;
+ input.innerHTML = text.replace(/\n$/, '');
31
document.body.appendChild(input);
32
input.select();
33
input.setSelectionRange(0, 99999);
0 commit comments