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
parent
commit
ce286ab314
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 4
      apps/client/src/app/components/admin-users/admin-users.html

2
CHANGELOG.md

@ -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`)

4
apps/client/src/app/components/admin-users/admin-users.html

@ -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) }}

Loading…
Cancel
Save