Merge pull request #16853 from yuliang615/dev

Fix:Copy button in code blocks copies the original AI output instead of the edited content
This commit is contained in:
Tim Jaeryang Baek 2025-08-26 13:51:30 +04:00 committed by GitHub
commit 1dc8056d84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@
const copyCode = async () => { const copyCode = async () => {
copied = true; copied = true;
await copyToClipboard(code); await copyToClipboard(_code);
setTimeout(() => { setTimeout(() => {
copied = false; copied = false;