mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	fix: opts being overriden in graph option (#384)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							bb93ac1c83
						
					
				
				
					commit
					2774e976d2
				
			@@ -47,8 +47,8 @@ const defaultOptions: GraphOptions = {
 | 
			
		||||
 | 
			
		||||
export default ((opts?: GraphOptions) => {
 | 
			
		||||
  function Graph() {
 | 
			
		||||
    const localGraph = { ...opts?.localGraph, ...defaultOptions.localGraph }
 | 
			
		||||
    const globalGraph = { ...opts?.globalGraph, ...defaultOptions.globalGraph }
 | 
			
		||||
    const localGraph = { ...defaultOptions.localGraph, ...opts?.localGraph, }
 | 
			
		||||
    const globalGraph = { ...defaultOptions.globalGraph, ...opts?.globalGraph, }
 | 
			
		||||
    return (
 | 
			
		||||
      <div class="graph">
 | 
			
		||||
        <h3>Graph View</h3>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user