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