fixed csv import

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-03-10 09:05:15 -06:00
parent 7c1e6bd45c
commit 4dc3b4f741
2 changed files with 2 additions and 2 deletions

View File

@@ -961,7 +961,7 @@ function saveUserColumnPreferences(importMode) {
});
}
function copyToClipboard(e) {
var textToCopy = e.textContent;
var textToCopy = e.textContent.trim();
navigator.clipboard.writeText(textToCopy);
successToast("Copied to Clipboard");
}