From 1243cbb45b63f629c43c5f9c2155f8e26dfd6ab4 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Thu, 3 Sep 2020 09:42:34 +0300 Subject: [PATCH] fix docs branch link problem --- .../src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs index 4568e574a5..03a05f2e78 100644 --- a/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs +++ b/modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml.cs @@ -393,7 +393,7 @@ namespace Volo.Docs.Pages.Documents.Project return RemoveVersionPrefix(Document.Version) == LatestVersionInfo.Version ? DocsAppConsts.Latest : - Document.Version; + RemoveVersionPrefix(Document.Version); } private async Task SetDocumentAsync()