mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
format numbers
This commit is contained in:
parent
5a504b00fb
commit
603a1ef046
@ -16,7 +16,7 @@
|
||||
</app-callout>
|
||||
<ng-container *ngIf="ciphers.length">
|
||||
<app-callout type="danger" title="{{'reusedPasswordsFound' | i18n}}">
|
||||
{{'reusedPasswordsFoundDesc' | i18n : ciphers.length}}
|
||||
{{'reusedPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
|
||||
</app-callout>
|
||||
<table class="table table-hover table-list table-ciphers">
|
||||
<tbody>
|
||||
|
@ -16,7 +16,7 @@
|
||||
</app-callout>
|
||||
<ng-container *ngIf="ciphers.length">
|
||||
<app-callout type="danger" title="{{'unsecuredWebsitesFound' | i18n}}">
|
||||
{{'unsecuredWebsitesFoundDesc' | i18n : ciphers.length}}
|
||||
{{'unsecuredWebsitesFoundDesc' | i18n : (ciphers.length | number)}}
|
||||
</app-callout>
|
||||
<table class="table table-hover table-list table-ciphers">
|
||||
<tbody>
|
||||
|
@ -16,7 +16,7 @@
|
||||
</app-callout>
|
||||
<ng-container *ngIf="ciphers.length">
|
||||
<app-callout type="danger" title="{{'weakPasswordsFound' | i18n}}">
|
||||
{{'weakPasswordsFoundDesc' | i18n : ciphers.length}}
|
||||
{{'weakPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
|
||||
</app-callout>
|
||||
<table class="table table-hover table-list table-ciphers">
|
||||
<tbody>
|
||||
|
Loading…
Reference in New Issue
Block a user