Send progress in main view
This commit is contained in:
parent
41232fbd90
commit
e9accdebf1
11 changed files with 465 additions and 86 deletions
|
|
@ -52,6 +52,7 @@ import ReadMarker from "./messages/ReadMarker.vue";
|
|||
import RoomTombstone from "./messages/composition/RoomTombstone.vue";
|
||||
import roomDisplayOptionsMixin from "./roomDisplayOptionsMixin";
|
||||
import roomTypeMixin from "./roomTypeMixin";
|
||||
import MessageThreadSending from "./messages/composition/MessageThreadSending.vue";
|
||||
|
||||
export const ROOM_READ_MARKER_EVENT_PLACEHOLDER = { getId: () => "ROOM_READ_MARKER", getTs: () => Date.now() };
|
||||
|
||||
|
|
@ -225,6 +226,9 @@ export default {
|
|||
}
|
||||
return null;
|
||||
}
|
||||
if (!isForExport && event.uploadBatch) {
|
||||
return MessageThreadSending;
|
||||
}
|
||||
if (event.isMxThread) {
|
||||
// Outgoing thread
|
||||
return isForExport ? MessageThreadExport : MessageThread;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue