Browse Source

Filter Navigation and Parameters in the search results.

pull/4705/head
maliming 6 years ago
parent
commit
54394b30f2
  1. 4
      modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs

4
modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs

@ -176,7 +176,7 @@ namespace Volo.Docs.Documents
Version = esDoc.Version,
LanguageCode = esDoc.LanguageCode,
Highlight = esDoc.Highlight
}).ToList();
}).Where(x => x.FileName != project.NavigationDocumentName && x.FileName != project.ParametersDocumentName).ToList();
}
public async Task<bool> FullSearchEnabledAsync()
@ -338,4 +338,4 @@ namespace Volo.Docs.Documents
return TimeSpan.Parse(value);
}
}
}
}

Loading…
Cancel
Save