Skip to content
/ gitea Public
forked from go-gitea/gitea

Commit

Permalink
Fix Resolve Conversation not working in Conversation view
Browse files Browse the repository at this point in the history
It only worked in the Files Changed view.

Caused by go-gitea#23639.
  • Loading branch information
brechtvl authored and techknowlogick committed Apr 18, 2023
1 parent bb27838 commit bf8295e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_src/js/features/repo-diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ function initRepoDiffShowMore() {
}

export function initRepoDiffView() {
initRepoDiffConversationForm();
const diffFileList = $('#diff-file-list');
if (diffFileList.length === 0) return;
initDiffFileTree();
initRepoDiffShowMore();
initRepoDiffReviewButton();
initRepoDiffFileViewToggle();
initRepoDiffConversationForm();
initViewedCheckboxListenerFor();
initExpandAndCollapseFilesButton();
}

0 comments on commit bf8295e

Please sign in to comment.