We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 382f37c commit 27686a5Copy full SHA for 27686a5
src/components/layout/Editor.vue
@@ -324,7 +324,9 @@ export default {
324
})
325
326
watch(() => props.quote, p => {
327
- if (p) nextTick(() => v.posting.post = { title: 'RE:' + props.thread, body: p.body, thread_id: props.thread.id})
+ if (p && v.posting?.post?.body) nextTick(() => v.posting.post = { title: 'RE:' + props.thread, body: v.posting.post.body + p.body, thread_id: props.thread.id})
328
+ else if (p) nextTick(() => v.posting.post = { title: 'RE:' + props.thread, body: p.body, thread_id: props.thread.id})
329
+ nextTick(() => v.postEditorEl.focus())
330
331
332
// invalidate poll when closing poll creator
0 commit comments