From 5f8ddb8b471eee16ae4dfea35606695267beb738 Mon Sep 17 00:00:00 2001 From: Anthony Kinsey Date: Tue, 16 Nov 2021 14:33:44 -1000 Subject: [PATCH] fix: issue with title of thread changing when editing first post in thread --- src/components/layout/Editor.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) } })