Fix JS error when opening to expanded code comment (#30463)
Fix regression from
e0b018706f
where opening to a code comment via hash link would give this error:
<img width="1247" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/f9aaeded-8492-4416-9a73-afa0c56220a7">
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
(cherry picked from commit ce130ae8daa37c977443045390209e9095dc42b1)
This commit is contained in:
parent
7ff74a47c8
commit
a59a32eb08
1 changed files with 3 additions and 5 deletions
|
@ -449,12 +449,10 @@ export function initRepoPullRequestReview() {
|
||||||
offset += $('.diff-detail-box').outerHeight() + $(diffHeader).outerHeight();
|
offset += $('.diff-detail-box').outerHeight() + $(diffHeader).outerHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById(`show-outdated-${id}`).classList.add('tw-hidden');
|
hideElem(`#show-outdated-${id}`);
|
||||||
document.getElementById(`code-comments-${id}`).classList.remove('tw-hidden');
|
showElem(`#code-comments-${id}, #code-preview-${id}, #hide-outdated-${id}`);
|
||||||
document.getElementById(`code-preview-${id}`).classList.remove('tw-hidden');
|
|
||||||
document.getElementById(`hide-outdated-${id}`).classList.remove('tw-hidden');
|
|
||||||
// if the comment box is folded, expand it
|
// if the comment box is folded, expand it
|
||||||
if (ancestorDiffBox.getAttribute('data-folded') === 'true') {
|
if (ancestorDiffBox?.getAttribute('data-folded') === 'true') {
|
||||||
setFileFolding(ancestorDiffBox, ancestorDiffBox.querySelector('.fold-file'), false);
|
setFileFolding(ancestorDiffBox, ancestorDiffBox.querySelector('.fold-file'), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue