Browse Source

fix(client): format html file

pull/6913/head
KenTandrian 6 days ago
parent
commit
1aee052e47
  1. 13
      apps/client/src/app/components/header/header.component.html

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

@ -36,7 +36,8 @@
i18n
mat-button
[class]="{
'font-weight-bold': currentRoute() === internalRoutes.portfolio.path,
'font-weight-bold':
currentRoute() === internalRoutes.portfolio.path,
'text-decoration-underline':
currentRoute() === internalRoutes.portfolio.path
}"
@ -151,7 +152,9 @@
[hasPermissionToAccessAdminControl]="
hasPermissionToAccessAdminControl
"
[hasPermissionToChangeDateRange]="hasPermissionToChangeDateRange()"
[hasPermissionToChangeDateRange]="
hasPermissionToChangeDateRange()
"
[hasPermissionToChangeFilters]="hasPermissionToChangeFilters()"
[user]="user()"
(closed)="closeAssistant()"
@ -182,7 +185,8 @@
</button>
<mat-menu #accountMenu="matMenu" xPosition="before">
@if (
hasPermissionForSubscription && user()?.subscription?.type === 'Basic'
hasPermissionForSubscription &&
user()?.subscription?.type === 'Basic'
) {
<a class="d-flex" mat-menu-item [routerLink]="routerLinkPricing"
><span class="align-items-center d-flex"
@ -297,7 +301,8 @@
>Resources</a
>
@if (
hasPermissionForSubscription && user()?.subscription?.type === 'Basic'
hasPermissionForSubscription &&
user()?.subscription?.type === 'Basic'
) {
<a
class="d-flex d-sm-none"

Loading…
Cancel
Save