Browse Source
Bugfix/fix alignment in users table (#1335)
* Fix alignment
* Update changelog
pull/1333/head^2
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
6 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-users/admin-users.html
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the user interface of the benchmark comparator |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the alignment of the value component in the admin control panel |
|
|
|
|
|
|
|
## 1.202.0 - 07.10.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -43,23 +43,23 @@ |
|
|
|
<td class="mat-cell px-1 py-2 text-right"> |
|
|
|
{{ formatDistanceToNow(userItem.createdAt) }} |
|
|
|
</td> |
|
|
|
<td class="mat-cell px-1 py-2"> |
|
|
|
<td class="mat-cell px-1 py-2 text-right"> |
|
|
|
<gf-value |
|
|
|
class="justify-content-end" |
|
|
|
class="d-inline-block justify-content-end" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[value]="userItem.accountCount" |
|
|
|
></gf-value> |
|
|
|
</td> |
|
|
|
<td class="mat-cell px-1 py-2"> |
|
|
|
<td class="mat-cell px-1 py-2 text-right"> |
|
|
|
<gf-value |
|
|
|
class="justify-content-end" |
|
|
|
class="d-inline-block justify-content-end" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[value]="userItem.transactionCount" |
|
|
|
></gf-value> |
|
|
|
</td> |
|
|
|
<td class="mat-cell px-1 py-2"> |
|
|
|
<td class="mat-cell px-1 py-2 text-right"> |
|
|
|
<gf-value |
|
|
|
class="justify-content-end" |
|
|
|
class="d-inline-block justify-content-end" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[precision]="0" |
|
|
|
[value]="userItem.engagement" |
|
|
|