currencyPipe fixed
This commit is contained in:
parent
3bde7aed3f
commit
840d0aabb1
7 changed files with 17 additions and 17 deletions
|
@ -1,3 +1,3 @@
|
|||
<td>{{ leaderboard.position }}</td>
|
||||
<td class="text-truncate">{{ leaderboard.display_name }}</td>
|
||||
<td>{{ listType.includes('total') ? (leaderboard.value | currency:'GBP':true:'1.2-2') : (leaderboard.value | number:'1.0-0') }}</td>
|
||||
<td>{{ listType.includes('total') ? (leaderboard.value | currency:'GBP':'symbol':'1.2-2') : (leaderboard.value | number:'1.0-0') }}</td>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<td>{{payrollDate}}</td>
|
||||
<td>{{payroll.gross_payroll | currency:'GBP':true:'1.2-2' }}</td>
|
||||
<td>{{payroll.gross_payroll | currency:'GBP':'symbol':'1.2-2' }}</td>
|
||||
<td>{{payroll.employee_amount}}</td>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<td>{{transaction.seller}}</td>
|
||||
<td>{{transaction.value | currency:'GBP':true:'1.2-2' }}</td>
|
||||
<td>{{transaction.value | currency:'GBP':'symbol':'1.2-2' }}</td>
|
||||
<td>{{transactionDate}}</td>
|
||||
|
|
Reference in a new issue