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

View File

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