mirror of
				https://github.com/alrayyes/wiki.git
				synced 2025-08-07 15:21:03 +00:00 
			
		
		
		
	fix(toc): correct type for minEntries param (#909)
This commit is contained in:
		
					parent
					
						
							
								3b266ee7d0
							
						
					
				
			
			
				commit
				
					
						1c3f3d03e1
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -6,7 +6,7 @@ import Slugger from "github-slugger"
 | 
			
		|||
 | 
			
		||||
export interface Options {
 | 
			
		||||
  maxDepth: 1 | 2 | 3 | 4 | 5 | 6
 | 
			
		||||
  minEntries: 1
 | 
			
		||||
  minEntries: number
 | 
			
		||||
  showByDefault: boolean
 | 
			
		||||
  collapseByDefault: boolean
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -52,7 +52,7 @@ export const TableOfContents: QuartzTransformerPlugin<Partial<Options> | undefin
 | 
			
		|||
                }
 | 
			
		||||
              })
 | 
			
		||||
 | 
			
		||||
              if (toc.length > opts.minEntries) {
 | 
			
		||||
              if (toc.length > 0 && toc.length > opts.minEntries) {
 | 
			
		||||
                file.data.toc = toc.map((entry) => ({
 | 
			
		||||
                  ...entry,
 | 
			
		||||
                  depth: entry.depth - highestDepth,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue