@fy-/fws-vue 2.3.45 → 2.3.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -277,7 +277,7 @@ function handlePaste(e: ClipboardEvent) {
|
|
|
277
277
|
if (!text || !text.trim()) return
|
|
278
278
|
|
|
279
279
|
// Process the text (replace separator characters)
|
|
280
|
-
const pasteText = text.replace(
|
|
280
|
+
const pasteText = text.replace(/,/g, ',')
|
|
281
281
|
|
|
282
282
|
// Simply set the content - the most reliable approach
|
|
283
283
|
textInput.value.textContent = pasteText
|