input param is changed

This commit is contained in:
병준 박 2019-09-25 17:41:16 +09:00
parent 6de48f83b4
commit c6ed6db2d8
3 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
<ucap-group-expansion-panel
[buddyInfoList$]="buddyInfoList$"
[buddyInfoList]="buddyInfoList$ | async"
></ucap-group-expansion-panel>

View File

@ -1,5 +1,5 @@
<mat-accordion>
<mat-expansion-panel *ngFor="let buddyInfo of buddyInfoList$ | async">
<mat-expansion-panel *ngFor="let buddyInfo of buddyInfoList">
<mat-expansion-panel-header>
<mat-panel-title> {{ buddyInfo.name }} </mat-panel-title>
<mat-panel-description

View File

@ -1,5 +1,5 @@
import { Component, OnInit, Input } from '@angular/core';
import { Observable } from 'rxjs';
import { UserInfo } from '@ucap-webmessenger/protocol-room';
@Component({
@ -9,7 +9,7 @@ import { UserInfo } from '@ucap-webmessenger/protocol-room';
})
export class ExpansionPanelComponent implements OnInit {
@Input()
buddyInfoList$: Observable<UserInfo[]>;
buddyInfoList: UserInfo[];
constructor() {}