Browse Source
Task/improve registration and last activity display in admin users component (#7062)
* Improve display of registration and last activity
* Update changelog
pull/7063/head
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-users/admin-users.html
|
|
|
@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Improved the styling of the checkboxes to consistently use the primary color in their states |
|
|
|
- Improved the account name display in the accounts table |
|
|
|
- Improved the name display in the activities table |
|
|
|
- Improved the last activity display in the users table of the admin control panel |
|
|
|
- Improved the registration display in the users table of the admin control panel |
|
|
|
- Improved the user id display in the users table of the admin control panel |
|
|
|
- Deprecated `SymbolProfile` in favor of `assetProfile` in the endpoint `GET api/v1/portfolio/holding/:dataSource/:symbol` |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
@ -77,7 +77,7 @@ |
|
|
|
</th> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="mat-mdc-cell px-1 py-2" |
|
|
|
class="mat-mdc-cell px-1 py-2 text-nowrap" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
{{ formatDistanceToNow(element.createdAt) }} |
|
|
|
@ -183,7 +183,7 @@ |
|
|
|
</th> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="mat-mdc-cell px-1 py-2" |
|
|
|
class="mat-mdc-cell px-1 py-2 text-nowrap" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
{{ formatDistanceToNow(element.lastActivity) }} |
|
|
|
|