mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix loading content history on show more (#17819)
* Fix loading content history on show more - Call `initRepoIssueContentHistory` so that the newly loaded issues also get their content history. - Resolves #17767 * apply history to show diff too Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
import {initCompReactionSelector} from './comp/ReactionSelector.js';
 | 
			
		||||
 | 
			
		||||
import {initRepoIssueContentHistory} from './repo-issue-content.js';
 | 
			
		||||
const {csrfToken} = window.config;
 | 
			
		||||
 | 
			
		||||
export function initRepoDiffReviewButton() {
 | 
			
		||||
@@ -101,6 +101,7 @@ export function initRepoDiffShowMore() {
 | 
			
		||||
      $('#diff-too-many-files-stats').remove();
 | 
			
		||||
      $('#diff-files').append($(resp).find('#diff-files li'));
 | 
			
		||||
      $('#diff-incomplete').replaceWith($(resp).find('#diff-file-boxes').children());
 | 
			
		||||
      initRepoIssueContentHistory();
 | 
			
		||||
    }).fail(() => {
 | 
			
		||||
      $('#diff-show-more-files, #diff-show-more-files-stats').removeClass('disabled');
 | 
			
		||||
    });
 | 
			
		||||
@@ -126,6 +127,7 @@ export function initRepoDiffShowMore() {
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      $target.parent().replaceWith($(resp).find('#diff-file-boxes .diff-file-body .file-body').children());
 | 
			
		||||
      initRepoIssueContentHistory();
 | 
			
		||||
    }).fail(() => {
 | 
			
		||||
      $target.removeClass('disabled');
 | 
			
		||||
    });
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user