Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
11 additions and
5 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/about/about-page.html
-
apps/client/src/app/pages/admin/admin-page.html
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed an issue in the user table of the admin control panel with missing data |
|
|
|
|
|
|
|
|
## 0.86.1 - 18.04.2021 |
|
|
## 0.86.1 - 18.04.2021 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
@ -18,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Changed the about page for the new license |
|
|
- Changed the about page for the new license |
|
|
- Optimized the data management for historical data |
|
|
- Optimized the data management for historical data |
|
|
- Optimized the exchange rate service |
|
|
- Optimized the exchange rate service |
|
|
- Improved the user table in the admin control panel |
|
|
- Improved the user table of the admin control panel |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ |
|
|
<a href="https://dotsilver.ch">Thomas Kaul</a>. |
|
|
<a href="https://dotsilver.ch">Thomas Kaul</a>. |
|
|
<ng-container *ngIf="lastPublish"> |
|
|
<ng-container *ngIf="lastPublish"> |
|
|
This instance has been last published on {{ lastPublish |
|
|
This instance has been last published on {{ lastPublish |
|
|
}}</ng-container |
|
|
}}.</ng-container |
|
|
> |
|
|
> |
|
|
</p> |
|
|
</p> |
|
|
<p> |
|
|
<p> |
|
|
|
@ -99,13 +99,13 @@ |
|
|
{{ userItem.createdAt | date: defaultDateFormat }} |
|
|
{{ userItem.createdAt | date: defaultDateFormat }} |
|
|
</td> |
|
|
</td> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
{{ userItem._count.Order }} |
|
|
{{ userItem._count?.Order }} |
|
|
</td> |
|
|
</td> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
{{ userItem.Analytics.activityCount }} |
|
|
{{ userItem.Analytics?.activityCount }} |
|
|
</td> |
|
|
</td> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
<td class="mat-cell pr-2 py-2 text-truncate"> |
|
|
{{ formatDistanceToNow(userItem.Analytics.updatedAt) }} |
|
|
{{ formatDistanceToNow(userItem.Analytics?.updatedAt) }} |
|
|
</td> |
|
|
</td> |
|
|
</tr> |
|
|
</tr> |
|
|
</tbody> |
|
|
</tbody> |
|
|