forked from NYANDEV/forgejo
Reply button is not removed when deleting a code review comment (#13824)
Backport #13774
This commit is contained in:
parent
0d43a2a069
commit
10fff12da4
3 changed files with 100 additions and 90 deletions
|
@ -1055,7 +1055,11 @@ async function initRepository() {
|
|||
$.post($this.data('url'), {
|
||||
_csrf: csrf
|
||||
}).done(() => {
|
||||
const $conversationHolder = $this.closest('.conversation-holder');
|
||||
$(`#${$this.data('comment-id')}`).remove();
|
||||
if ($conversationHolder.length && !$conversationHolder.find('.comment').length) {
|
||||
$conversationHolder.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue