diff --git a/src/components/PostEditor/PostTextarea/index.tsx b/src/components/PostEditor/PostTextarea/index.tsx index 2f60f78..22a41f2 100644 --- a/src/components/PostEditor/PostTextarea/index.tsx +++ b/src/components/PostEditor/PostTextarea/index.tsx @@ -89,6 +89,9 @@ const PostTextarea = forwardRef< return true } return false + }, + clipboardTextSerializer(content) { + return parseEditorJsonToText(content.toJSON()) } }, content: postEditorCache.getPostContentCache({ defaultContent, parentEvent }),