2019-10-07 17:02:14 +09:00
|
|
|
<mat-accordion #groupAccordion="matAccordion" [multi]="true">
|
2019-10-10 15:50:50 +09:00
|
|
|
<mat-expansion-panel *ngIf="true">
|
|
|
|
<mat-expansion-panel-header>
|
|
|
|
<mat-panel-title> 즐겨찾기 </mat-panel-title>
|
|
|
|
<mat-panel-description> </mat-panel-description>
|
|
|
|
</mat-expansion-panel-header>
|
|
|
|
</mat-expansion-panel>
|
|
|
|
|
2019-09-27 12:53:21 +09:00
|
|
|
<mat-expansion-panel *ngFor="let groupBuddy of groupBuddyList">
|
2019-09-24 09:03:36 +09:00
|
|
|
<mat-expansion-panel-header>
|
2019-09-27 12:53:21 +09:00
|
|
|
<mat-panel-title> {{ groupBuddy.group.name }} </mat-panel-title>
|
2019-09-26 11:11:22 +09:00
|
|
|
<mat-panel-description> </mat-panel-description>
|
2019-09-24 09:03:36 +09:00
|
|
|
</mat-expansion-panel-header>
|
2019-09-27 12:53:21 +09:00
|
|
|
|
2019-10-10 15:50:50 +09:00
|
|
|
<ucap-profile-user-list-item *ngFor="let userInfo of groupBuddy.buddyList" [userInfo]="userInfo"
|
|
|
|
(click)="onClickBuddy(userInfo)">
|
|
|
|
</ucap-profile-user-list-item>
|
|
|
|
<!-- <ucap-profile-user-list-item *ngFor="let userInfo of groupBuddy.buddyList" [userInfo]="userInfo"
|
|
|
|
[presence]="presence">
|
|
|
|
</ucap-profile-user-list-item> -->
|
2019-09-24 09:03:36 +09:00
|
|
|
</mat-expansion-panel>
|
|
|
|
</mat-accordion>
|