Browse Source

Fix base currency

pull/180/head
Thomas 4 years ago
parent
commit
4c13665dc8
  1. 5
      apps/client/src/app/pages/pricing/pricing-page.html

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