Browse Source
Merge pull request #19537 from abpframework/issue-4095
Removed long-arrow-right icon from docs
pull/19546/head
Gizem Mutu Kurt
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
modules/docs/src/Volo.Docs.Web/Areas/Documents/TagHelpers/TreeTagHelper.cs
|
|
|
@ -154,7 +154,7 @@ namespace Volo.Docs.Areas.Documents.TagHelpers |
|
|
|
|
|
|
|
return string.Format(LiItemTemplateWithLink, |
|
|
|
listItemCss, |
|
|
|
node.HasChildItems ? "chevron-right" : sb.Append("long-arrow-right ").Append(node.Path.IsNullOrEmpty() ? "no-link" : "has-link").ToString(), |
|
|
|
node.HasChildItems ? "chevron-right" : sb.Append(node.Path.IsNullOrEmpty() ? "no-link" : "has-link").ToString(), |
|
|
|
listInnerItem, |
|
|
|
content); |
|
|
|
} |
|
|
|
|