1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 02:23:44 +00:00

[PM-12066] Add missing column headers to reports (#11293)

* Add missing column header to weak-password report

* Add missing column header to exposed-password report

* Add missing column header to reused-password report

---------

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2024-09-27 19:03:22 +02:00
committed by GitHub
parent b149c86c28
commit 20c253e87b
4 changed files with 16 additions and 3 deletions

View File

@@ -34,7 +34,9 @@
<th bitCell bitSortable="organizationId" *ngIf="!isAdminConsoleActive">
{{ "owner" | i18n }}
</th>
<th bitCell class="tw-text-right" bitSortable="exposedXTimes"></th>
<th bitCell class="tw-text-right" bitSortable="exposedXTimes">
{{ "timesExposed" | i18n }}
</th>
</tr>
</ng-container>
<ng-template body let-rows$>

View File

@@ -39,7 +39,7 @@
<th bitCell></th>
<th bitCell>{{ "name" | i18n }}</th>
<th bitCell>{{ "owner" | i18n }}</th>
<th bitCell></th>
<th bitCell class="tw-text-right">{{ "timesReused" | i18n }}</th>
</tr>
</ng-container>
<ng-template body let-rows$>

View File

@@ -39,7 +39,9 @@
<th bitCell bitSortable="organizationId" *ngIf="!isAdminConsoleActive">
{{ "owner" | i18n }}
</th>
<th bitCell class="tw-text-right" bitSortable="reportValue" default></th>
<th bitCell class="tw-text-right" bitSortable="reportValue" default>
{{ "weakness" | i18n }}
</th>
</tr>
</ng-container>
<ng-template body let-rows$>