Bugfix/fix base currency in pricing page (#180)

* Fix base currency

* Update changelog
pull/181/head
Thomas 3 years ago committed by GitHub
parent 169c151547
commit ee9a521813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save