finalEventDate is added
This commit is contained in:
parent
fdf1c14b7e
commit
150ebd56af
|
@ -1,4 +1,5 @@
|
|||
<div *ngFor="let room of roomList" (click)="onSelectedRoom(room)">
|
||||
<div class="room-name">{{ getRoomName(room) }}</div>
|
||||
<div class="room-name">{{ room.finalEventMessage }}</div>
|
||||
<div>{{ room.finalEventDate }}</div>
|
||||
<div>{{ room.finalEventMessage }}</div>
|
||||
</div>
|
||||
|
|
|
@ -39,6 +39,7 @@ export const reducer = createReducer(
|
|||
if (roomInfo.roomSeq === action.roomSeq) {
|
||||
roomList.push({
|
||||
...roomInfo,
|
||||
finalEventDate: action.info.sendDate,
|
||||
finalEventMessage: action.info.sentMessage
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -18,7 +18,7 @@ export enum EventType {
|
|||
// L: 링크(Legacy)
|
||||
Link = 'L',
|
||||
// R: 대화방명변경
|
||||
RenameRoom = '',
|
||||
RenameRoom = 'R',
|
||||
// Y: 번역
|
||||
Translation = 'Y',
|
||||
// Z: 대용량 번역
|
||||
|
|
Loading…
Reference in New Issue
Block a user