Browse Source

Merge pull request #18324 from abpframework/issue-#17397

Update docs/index.cshtml
pull/18327/head
Engincan VESKE 2 years ago
committed by GitHub
parent
commit
6da0b12fbd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml

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

@ -318,7 +318,7 @@
<select class="doc-section-combobox form-select"
aria-describedby="@("Section" + parameter.Name + "ComboboxAddonId")"
id="@("Section" + parameter.Name + "ComboboxId")" data-key="@parameter.Name">
@foreach (var value in parameter.Values)
@foreach (var value in parameter.Values.OrderBy(p => p.Value))
{
@if (value.Key == (Model.UserPreferences.ContainsKey(parameter.Name) ? Model.UserPreferences[parameter.Name] : null))
{

Loading…
Cancel
Save