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
parent
commit
ee9a521813
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 5
      apps/client/src/app/pages/pricing/pricing-page.html

4
CHANGELOG.md

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

5
apps/client/src/app/pages/pricing/pricing-page.html

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

Loading…
Cancel
Save