조직도 > 프로필 안뜨는 문제 수정.
This commit is contained in:
parent
40dcb1eace
commit
5fc95cd12a
|
@ -98,9 +98,7 @@ export class OrganizationComponent
|
|||
userInfos: (UserInfo | UserInfoSS | UserInfoF | UserInfoDN)[];
|
||||
}>();
|
||||
@Output()
|
||||
openProfile = new EventEmitter<{
|
||||
userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN;
|
||||
}>();
|
||||
openProfile = new EventEmitter<{ userSeq: number }>();
|
||||
@Output()
|
||||
sendCall = new EventEmitter<string>();
|
||||
@Output()
|
||||
|
@ -416,8 +414,8 @@ export class OrganizationComponent
|
|||
this.toggleUser.emit(userInfo);
|
||||
}
|
||||
|
||||
onClickOpenProfile(userInfo: UserInfo | UserInfoSS | UserInfoF | UserInfoDN) {
|
||||
this.openProfile.emit({ userInfo });
|
||||
onClickOpenProfile(userSeq: number) {
|
||||
this.openProfile.emit({ userSeq });
|
||||
}
|
||||
onClickSendClickToCall(calleeNumber: string) {
|
||||
this.sendCall.emit(calleeNumber);
|
||||
|
|
Loading…
Reference in New Issue
Block a user