22 lines
586 B
HTML
22 lines
586 B
HTML
<app-layout-messenger-intro
|
|
*ngIf="
|
|
!this.selectedChat && (this.gnbMenuIndex$ | async) !== MainMenu.Organization
|
|
"
|
|
></app-layout-messenger-intro>
|
|
|
|
<app-layout-messenger-messages
|
|
*ngIf="
|
|
!!this.selectedChat &&
|
|
(this.gnbMenuIndex$ | async) !== MainMenu.Organization
|
|
"
|
|
(openProfile)="onClickOpenProfile($event)"
|
|
(closeRightDrawer)="onCloseRightDrawer()"
|
|
></app-layout-messenger-messages>
|
|
|
|
<app-layout-messenger-organization
|
|
[style.display]="
|
|
MainMenu.Organization === (this.gnbMenuIndex$ | async) ? 'block' : 'none'
|
|
"
|
|
>
|
|
</app-layout-messenger-organization>
|