스티커 한번 출력 후 계속 출력되는 문제 수정.
This commit is contained in:
parent
0830b017df
commit
72733b966a
|
@ -712,6 +712,7 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
if (!!this.selectedSticker) {
|
if (!!this.selectedSticker) {
|
||||||
this.isShowStickerSelector = false;
|
this.isShowStickerSelector = false;
|
||||||
this.setStickerHistory(this.selectedSticker);
|
this.setStickerHistory(this.selectedSticker);
|
||||||
|
this.selectedSticker = null;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.logger.error(res);
|
this.logger.error(res);
|
||||||
|
@ -760,6 +761,7 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
);
|
);
|
||||||
this.isShowStickerSelector = false;
|
this.isShowStickerSelector = false;
|
||||||
this.setStickerHistory(this.selectedSticker);
|
this.setStickerHistory(this.selectedSticker);
|
||||||
|
this.selectedSticker = null;
|
||||||
} else if (
|
} else if (
|
||||||
message.trim().length >
|
message.trim().length >
|
||||||
environment.productConfig.CommonSetting.masstextLength
|
environment.productConfig.CommonSetting.masstextLength
|
||||||
|
@ -860,7 +862,10 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
if (!!result && result.length > 0) {
|
if (!!result && result.length > 0) {
|
||||||
this.saveFile(value, result);
|
this.saveFile(value, result);
|
||||||
} else {
|
} else {
|
||||||
this.snackBarService.open('저장경로 지정에 실패하였습니다.', '확인');
|
this.snackBarService.open(
|
||||||
|
'저장경로 지정에 실패하였습니다.',
|
||||||
|
'확인'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(reason => {
|
.catch(reason => {
|
||||||
|
@ -923,11 +928,17 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
this.snackBarService.open('파일 저장에 실패하였습니다.', '확인');
|
this.snackBarService.open(
|
||||||
|
'파일 저장에 실패하였습니다.',
|
||||||
|
'확인'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(reason => {
|
.catch(reason => {
|
||||||
this.snackBarService.open('파일 저장에 실패하였습니다.', '확인');
|
this.snackBarService.open(
|
||||||
|
'파일 저장에 실패하였습니다.',
|
||||||
|
'확인'
|
||||||
|
);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(reason => {
|
.catch(reason => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user