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

Loading…
Cancel
Save