We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2205b45 commit f6aa0bdCopy full SHA for f6aa0bd
webviews/components/comment.tsx
@@ -310,7 +310,7 @@ export function AddComment({
310
const textareaRef = useRef<HTMLTextAreaElement>();
311
312
emitter.addListener('quoteReply', (message: string) => {
313
- const quoted = message.replace(/\n\n/g, '\n\n> ');
+ const quoted = message.replace(/\n/g, '\n> ');
314
updatePR({ pendingCommentText: `> ${quoted} \n\n` });
315
textareaRef.current?.scrollIntoView();
316
textareaRef.current?.focus();
0 commit comments