fix(search): matches getting highlighted in title (#440)
This commit is contained in:
		
							parent
							
								
									90dac31216
								
							
						
					
					
						commit
						23f43045c4
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -157,7 +157,7 @@ document.addEventListener("nav", async (e: unknown) => {
 | 
				
			||||||
    return {
 | 
					    return {
 | 
				
			||||||
      id,
 | 
					      id,
 | 
				
			||||||
      slug,
 | 
					      slug,
 | 
				
			||||||
      title: highlight(term, data[slug].title ?? ""),
 | 
					      title: searchType === "tags" ? data[slug].title : highlight(term, data[slug].title ?? ""),
 | 
				
			||||||
      // if searchType is tag, display context from start of file and trim, otherwise use regular highlight
 | 
					      // if searchType is tag, display context from start of file and trim, otherwise use regular highlight
 | 
				
			||||||
      content:
 | 
					      content:
 | 
				
			||||||
        searchType === "tags"
 | 
					        searchType === "tags"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue