forked from forgejo/forgejo
Change ID pattern of raw content container for issue (#21966)
Implement differentiation to html id for issue raw content container. Fixes #21965
This commit is contained in:
parent
2779d47ad3
commit
097d4e30b1
6 changed files with 9 additions and 9 deletions
|
@ -566,7 +566,7 @@ function initRepoIssueCommentEdit() {
|
|||
$(document).on('click', '.quote-reply', function (event) {
|
||||
$(this).closest('.dropdown').find('.menu').toggle('visible');
|
||||
const target = $(this).data('target');
|
||||
const quote = $(`#comment-${target}`).text().replace(/\n/g, '\n> ');
|
||||
const quote = $(`#${target}`).text().replace(/\n/g, '\n> ');
|
||||
const content = `> ${quote}\n\n`;
|
||||
let easyMDE;
|
||||
if ($(this).hasClass('quote-reply-diff')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue