Browse Source
Merge pull request #2916 from abpframework/maliming/patch-4
Fix documentation link.
pull/2953/head
Yunus Emre Kalkan
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
modules/docs/src/Volo.Docs.Web/Pages/Documents/Index.cshtml
-
modules/docs/src/Volo.Docs.Web/Pages/Documents/Index.cshtml.cs
|
|
|
@ -29,7 +29,7 @@ |
|
|
|
{ |
|
|
|
<li> |
|
|
|
<h3> |
|
|
|
<a href="@("./" + Model.DocumentsUrlPrefix + "en/" +project.ShortName)"> |
|
|
|
<a href="@(Model.DocumentsUrlPrefix + project.ShortName)"> |
|
|
|
@project.Name |
|
|
|
</a> |
|
|
|
</h3> |
|
|
|
|
|
|
|
@ -33,7 +33,7 @@ namespace Volo.Docs.Pages.Documents |
|
|
|
|
|
|
|
if (listResult.Items.Count == 1) |
|
|
|
{ |
|
|
|
return Redirect("." + DocumentsUrlPrefix + listResult.Items[0].ShortName); |
|
|
|
return Redirect(DocumentsUrlPrefix + listResult.Items[0].ShortName); |
|
|
|
} |
|
|
|
|
|
|
|
Projects = listResult.Items; |
|
|
|
|