Skip to content

Commit

Permalink
updated title for non descriptive anchor tags. (#9458)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyjdev committed Apr 7, 2023
1 parent 2a9a353 commit 10e5890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/NuGetGallery/Views/Shared/_ListPackage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
@Model.ShortDescription
@if (Model.IsDescriptionTruncated)
{
@Html.RouteLink("More information", RouteName.DisplayPackage, new { Model.Id, Model.Version })
@Html.RouteLink("More information", RouteName.DisplayPackage, new { Model.Id, Model.Version }, new { @title = "More information about " + Model.Id + " package." })
}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/NuGetGallery/Views/Users/Organizations.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Url,
CurrentUser,
false,
@<text>Organizations&nbsp;<span aria-hidden="true" class="ms-font-xl organizations-divider">|</span>&nbsp;<a href="@Url.AddOrganization()"><span aria-hidden="true" class="ms-font-m ms-Icon ms-Icon--Add"></span>&nbsp;Add new</a></text>)
@<text>Organizations&nbsp;<span aria-hidden="true" class="ms-font-xl organizations-divider">|</span>&nbsp;<a href="@Url.AddOrganization()" title="Add new organization."><span aria-hidden="true" class="ms-font-m ms-Icon ms-Icon--Add"></span>&nbsp;Add new</a></text>)
</div>
</div>
<hr class="breadcrumb-divider"/>
Expand Down

0 comments on commit 10e5890

Please sign in to comment.