issue :: 대화창 오픈시 이전대화보기 버튼 출력후, 대화 불러오기 화면출력

This commit is contained in:
leejinho 2020-04-03 11:11:29 +09:00
parent e10887c247
commit 9269906f35
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@
<div <div
*ngIf="eventRemained && !!eventList && eventList.length > 0" *ngIf="eventRemained && !!eventList && eventList.length > 0"
class="message-row view-previous" class="message-row view-previous"
[class.hide]="!showMore"
> >
<button mat-button (click)="onClickMore($event)" class="bg-accent-dark"> <button mat-button (click)="onClickMore($event)" class="bg-accent-dark">
<svg <svg

View File

@ -551,6 +551,7 @@ export class MessagesComponent implements OnInit, OnDestroy {
this.readToHereEvent, this.readToHereEvent,
() => {}, () => {},
() => { () => {
this.showMore = true;
this.firstCheckReadHere = false; this.firstCheckReadHere = false;
}, },
false, false,