Browse Source
Bugfix/fix base currency in pricing page (#180)
* Fix base currency
* Update changelog
pull/181/head
Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/pricing/pricing-page.html
|
|
@ -5,6 +5,10 @@ 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/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
- Fixed the base currency on the pricing page |
|
|
|
|
|
|
|
## 1.20.0 - 21.06.2021 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -181,7 +181,10 @@ |
|
|
|
>{{ user?.settings.baseCurrency || baseCurrency }} |
|
|
|
<ng-container *ngIf="coupon" |
|
|
|
><strong>{{ price - coupon }} </strong> |
|
|
|
<del>{{ user.settings.baseCurrency }} {{ price }}</del> |
|
|
|
<del |
|
|
|
>{{ user?.settings.baseCurrency || baseCurrency }} {{ price |
|
|
|
}}</del |
|
|
|
> |
|
|
|
</ng-container> |
|
|
|
<ng-container *ngIf="!coupon" |
|
|
|
><strong>{{ price }}</strong></ng-container |
|
|
|