Skip to content

Commit ed4fa14

Browse files
authored
Dropping the narration completely for absent signature and deprecation columns. (#8309)
1 parent 2149493 commit ed4fa14

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/NuGetGallery/Views/Packages/DisplayPackage.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -682,11 +682,11 @@
682682
}
683683
@if (Model.IsCertificatesUIEnabled)
684684
{
685-
<th aria-label="Signature Information" abbr="Signature Information"></th>
685+
<th aria-hidden="true" abbr="Signature Information"></th>
686686
}
687687
@if (Model.IsPackageDeprecationEnabled)
688688
{
689-
<th aria-label="Deprecation Information" abbr="Deprecation Information"></th>
689+
<th aria-hidden="true" abbr="Deprecation Information"></th>
690690
}
691691
</tr>
692692
</thead>
@@ -744,7 +744,7 @@
744744
{
745745
if (string.IsNullOrEmpty(packageVersion.SignatureInformation))
746746
{
747-
<td class="package-icon-cell" aria-label="No signature"></td>
747+
<td class="package-icon-cell" aria-hidden="true"></td>
748748
}
749749
else
750750
{
@@ -757,7 +757,7 @@
757757
{
758758
if (packageVersion.DeprecationStatus == PackageDeprecationStatus.NotDeprecated)
759759
{
760-
<td class="package-icon-cell" aria-label="Not deprecated"></td>
760+
<td class="package-icon-cell" aria-hidden="true"></td>
761761
}
762762
else
763763
{

0 commit comments

Comments
 (0)