Merge pull request #2448 from wucm667/codex/issue-2334-copy-all

fix: 修复兑换码生成后复制全部报错
This commit is contained in:
Wesley Liddick 2026-05-19 14:45:38 +08:00 committed by GitHub
commit 9f1a2c234d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -476,14 +476,12 @@ const closeResultDialog = () => {
}
const copyGeneratedCodes = async () => {
try {
await navigator.clipboard.writeText(generatedCodesText.value)
const success = await clipboardCopy(generatedCodesText.value, t('admin.redeem.copied'))
if (success) {
copiedAll.value = true
setTimeout(() => {
copiedAll.value = false
}, 2000)
} catch (error) {
appStore.showError(t('admin.redeem.failedToCopy'))
}
}