Part of #6171
This commit is contained in:
Alex Ross 2024-08-28 23:42:49 +02:00 коммит произвёл GitHub
Родитель 554e4caab6
Коммит 5d3f2e0d76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -304,7 +304,7 @@ export class GHPRComment extends CommentBase {
const match = this.rawComment.body.match(SUGGESTION_EXPRESSION);
const suggestionBody = match?.groups?.suggestion;
if (match) {
return suggestionBody ? `${suggestionBody}\n` : '';
return suggestionBody ? suggestionBody : '';
}
}

Просмотреть файл

@ -957,7 +957,7 @@ ${suggestionInformation.suggestionContent}
throw new Error('Cannot find the editor to apply the suggestion to.');
}
await editor.edit(builder => {
builder.replace(range.with(undefined, new vscode.Position(range.end.line + 1, 0)), suggestion);
builder.replace(range.with(undefined, editor.document.lineAt(range.end.line).range.end), suggestion);
});
}