24 lines
686 B
HTML
Raw Normal View History

2020-03-03 17:44:02 +09:00
<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
(openProfile)="onClickOpenProfile($event)"
(createConference)="onClickConferenceCreate($event)"
2020-03-03 17:44:02 +09:00
[style.display]="
MainMenu.Organization === (this.gnbMenuIndex$ | async) ? 'block' : 'none'
"
>
</app-layout-messenger-organization>