mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 13:28:25 +00:00 
			
		
		
		
	@@ -72,6 +72,10 @@ export function filterRepoFilesWeighted(files, filter) {
 | 
			
		||||
  return filterResult;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function escapePath(s) {
 | 
			
		||||
  return s.split('/').map(encodeURIComponent).join('/');
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function filterRepoFiles(filter) {
 | 
			
		||||
  const treeLink = $repoFindFileInput.attr('data-url-tree-link');
 | 
			
		||||
  $repoFindFileTableBody.empty();
 | 
			
		||||
@@ -83,7 +87,7 @@ function filterRepoFiles(filter) {
 | 
			
		||||
  for (const r of filterResult) {
 | 
			
		||||
    const $row = $(tmplRow);
 | 
			
		||||
    const $a = $row.find('a');
 | 
			
		||||
    $a.attr('href', `${treeLink}/${r.matchResult.join('')}`);
 | 
			
		||||
    $a.attr('href', `${treeLink}/${escapePath(r.matchResult.join(''))}`);
 | 
			
		||||
    const $octiconFile = $(svg('octicon-file')).addClass('mr-3');
 | 
			
		||||
    $a.append($octiconFile);
 | 
			
		||||
    // if the target file path is "abc/xyz", to search "bx", then the matchResult is ['a', 'b', 'c/', 'x', 'yz']
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user