# 이슈처리

[55 새그룹 팝업에서 No 선택 시 추가하는 팝업 발생함] :: 버그수정
[56 새그룹 팝업에서 Yes 선택 시 팝업 타이틀 오류] :: 문구 수정
This commit is contained in:
leejinho 2019-11-27 15:02:02 +09:00
parent 187efa67ab
commit 9c7839f65a

View File

@ -505,6 +505,11 @@ export class CreateChatDialogComponent implements OnInit, OnDestroy {
/** 팝업의 선택 이벤트 전달. */ /** 팝업의 선택 이벤트 전달. */
async onClickChoice(choice: boolean): Promise<void> { async onClickChoice(choice: boolean): Promise<void> {
if (this.data.type === UserSelectDialogType.NewGroup) { if (this.data.type === UserSelectDialogType.NewGroup) {
if (!choice) {
this.dialogRef.close();
return;
}
let cfmMsg = `새로운 그룹을 추가하시겠습니까?`; let cfmMsg = `새로운 그룹을 추가하시겠습니까?`;
if (this.selectedUserList.length === 0) { if (this.selectedUserList.length === 0) {
cfmMsg += `<br/>빈 그룹으로 생성됩니다.`; cfmMsg += `<br/>빈 그룹으로 생성됩니다.`;
@ -516,7 +521,7 @@ export class CreateChatDialogComponent implements OnInit, OnDestroy {
>(ConfirmDialogComponent, { >(ConfirmDialogComponent, {
width: '400px', width: '400px',
data: { data: {
title: 'Delete', title: 'Confirm',
html: cfmMsg html: cfmMsg
} }
}); });