format numbers

This commit is contained in:
Kyle Spearrin 2018-12-12 08:54:52 -05:00
parent 5a504b00fb
commit 603a1ef046
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
</app-callout> </app-callout>
<ng-container *ngIf="ciphers.length"> <ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'reusedPasswordsFound' | i18n}}"> <app-callout type="danger" title="{{'reusedPasswordsFound' | i18n}}">
{{'reusedPasswordsFoundDesc' | i18n : ciphers.length}} {{'reusedPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout> </app-callout>
<table class="table table-hover table-list table-ciphers"> <table class="table table-hover table-list table-ciphers">
<tbody> <tbody>

View File

@ -16,7 +16,7 @@
</app-callout> </app-callout>
<ng-container *ngIf="ciphers.length"> <ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'unsecuredWebsitesFound' | i18n}}"> <app-callout type="danger" title="{{'unsecuredWebsitesFound' | i18n}}">
{{'unsecuredWebsitesFoundDesc' | i18n : ciphers.length}} {{'unsecuredWebsitesFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout> </app-callout>
<table class="table table-hover table-list table-ciphers"> <table class="table table-hover table-list table-ciphers">
<tbody> <tbody>

View File

@ -16,7 +16,7 @@
</app-callout> </app-callout>
<ng-container *ngIf="ciphers.length"> <ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'weakPasswordsFound' | i18n}}"> <app-callout type="danger" title="{{'weakPasswordsFound' | i18n}}">
{{'weakPasswordsFoundDesc' | i18n : ciphers.length}} {{'weakPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout> </app-callout>
<table class="table table-hover table-list table-ciphers"> <table class="table table-hover table-list table-ciphers">
<tbody> <tbody>