We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb22bd5 commit 665daa6Copy full SHA for 665daa6
1 file changed
src/NuGetGallery/Views/Packages/DisplayPackage.cshtml
@@ -462,7 +462,7 @@
462
{
463
rowCount++;
464
@VersionListDivider(rowCount, versionsExpanded)
465
- <tr>
+ <tr class="@(packageVersion.IsCurrent(Model) ? "bg-info" : null)">
466
<td class="signature-info-cell">
467
@if (Model.IsCertificatesUIEnabled && !string.IsNullOrEmpty(packageVersion.SignatureInformation))
468
@@ -471,13 +471,7 @@
471
</td>
472
<td>
473
<a href="@Url.Package(packageVersion)" title="@packageVersion.FullVersion">
474
- <b>
475
@packageVersion.Version.Abbreviate(30)
476
- @if (packageVersion.IsCurrent(Model))
477
- {
478
- @:(current)
479
- }
480
- </b>
481
</a>
482
483
0 commit comments