[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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$>

View File

@ -2199,6 +2199,9 @@
"checkExposedPasswords": {
"message": "Check exposed passwords"
},
"timesExposed": {
"message": "Times exposed"
},
"exposedXTimes": {
"message": "Exposed $COUNT$ time(s)",
"placeholders": {
@ -2233,6 +2236,9 @@
"noWeakPasswords": {
"message": "No items in your vault have weak passwords."
},
"weakness": {
"message": "Weakness"
},
"reusedPasswordsReport": {
"message": "Reused passwords"
},
@ -2258,6 +2264,9 @@
"noReusedPasswords": {
"message": "No logins in your vault have passwords that are being reused."
},
"timesReused": {
"message": "Times reused"
},
"reusedXTimes": {
"message": "Reused $COUNT$ times",
"placeholders": {