Merge pull request #208 from fwa-wup/main

fix #207
This commit is contained in:
2026-06-25 21:40:46 +02:00
committed by GitHub
@@ -60,7 +60,6 @@
}) })
async function handlePaste(e: ClipboardEvent) { async function handlePaste(e: ClipboardEvent) {
e.preventDefault()
const data = e.clipboardData const data = e.clipboardData
if (!data) return if (!data) return
@@ -79,6 +78,7 @@
} }
if (raw.length === 0) return if (raw.length === 0) return
e.preventDefault()
const seen = new Set<string>() const seen = new Set<string>()
const pasted: File[] = [] const pasted: File[] = []