diff --git a/src/components/layout/Editor.vue b/src/components/layout/Editor.vue index 756db18e..fa7171bb 100644 --- a/src/components/layout/Editor.vue +++ b/src/components/layout/Editor.vue @@ -363,9 +363,9 @@ export default { watch(() => props.post, p => { if (p) { - p.title = 'RE:' + props.thread.title - nextTick(() => v.posting.post = p) if (p.body.length) v.editMode = true + if (p.position !== 1) p.title = 'RE:' + props.thread.title + nextTick(() => v.posting.post = p) } })