Browse Source

Bug fixed - Section Rendering error.

pull/20850/head
Fahri Gedik 1 year ago
parent
commit
0ee4a305a3
  1. 4
      modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs

4
modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs

@ -542,6 +542,10 @@ namespace Volo.Docs.Pages.Documents.Project
Document.Content = await _documentSectionRenderer.RenderAsync(Document.Content, UserPreferences, partialTemplates);
}
else
{
DocumentNavigationsDto = new DocumentNavigationsDto();
}
var converter = _documentToHtmlConverterFactory.Create(Document.Format ?? Project.Format);
var content = converter.Convert(Project, Document, GetSpecificVersionOrLatest(), LanguageCode, ProjectName);

Loading…
Cancel
Save