Browse Source

Hide pricing page link for Premium users

pull/1027/head
Thomas 3 years ago
parent
commit
2ad803d10d
  1. 8
      apps/client/src/app/components/header/header.component.html

8
apps/client/src/app/components/header/header.component.html

@ -66,7 +66,9 @@
>Resources</a
>
<a
*ngIf="hasPermissionForSubscription"
*ngIf="
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
"
class="d-none d-sm-block mx-1"
i18n
mat-flat-button
@ -203,7 +205,9 @@
>Resources</a
>
<a
*ngIf="hasPermissionForSubscription"
*ngIf="
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
"
class="d-block d-sm-none"
i18n
mat-menu-item

Loading…
Cancel
Save