Switch over remaining usage of sections.types for typeSectionName
				
					
				
			This commit is contained in:
		@@ -84,11 +84,11 @@ export class DocsInfo {
 | 
				
			|||||||
        return menuSubsectionsBySection;
 | 
					        return menuSubsectionsBySection;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    public getTypeDefinitionsByName(docAgnosticFormat: DocAgnosticFormat): { [name: string]: TypeDefinitionByName } {
 | 
					    public getTypeDefinitionsByName(docAgnosticFormat: DocAgnosticFormat): { [name: string]: TypeDefinitionByName } {
 | 
				
			||||||
        if (_.isUndefined(this.sections.types)) {
 | 
					        if (_.isUndefined(docAgnosticFormat[this.typeSectionName])) {
 | 
				
			||||||
            return {};
 | 
					            return {};
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        const section = docAgnosticFormat[this.sections.types];
 | 
					        const section = docAgnosticFormat[this.typeSectionName];
 | 
				
			||||||
        const typeDefinitionByName = _.keyBy(section.types, 'name') as any;
 | 
					        const typeDefinitionByName = _.keyBy(section.types, 'name') as any;
 | 
				
			||||||
        return typeDefinitionByName;
 | 
					        return typeDefinitionByName;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user