mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Add helper for thread root id in view source (#9632)
This commit is contained in:
parent
e71a757f90
commit
ded031aca6
@ -167,6 +167,13 @@ export default class ViewSource extends React.Component<IProps, IState> {
|
||||
<CopyableText getTextToCopy={() => eventId} border={false}>
|
||||
{ _t("Event ID: %(eventId)s", { eventId }) }
|
||||
</CopyableText>
|
||||
{ mxEvent.threadRootId && (
|
||||
<CopyableText getTextToCopy={() => mxEvent.threadRootId!} border={false}>
|
||||
{ _t("Thread root ID: %(threadRootId)s", {
|
||||
threadRootId: mxEvent.threadRootId,
|
||||
}) }
|
||||
</CopyableText>
|
||||
) }
|
||||
</div>
|
||||
{ isEditing ? this.editSourceContent() : this.viewSourceContent() }
|
||||
{ !isEditing && canEdit && (
|
||||
|
@ -3399,6 +3399,7 @@
|
||||
"Decrypted event source": "Decrypted event source",
|
||||
"Original event source": "Original event source",
|
||||
"Event ID: %(eventId)s": "Event ID: %(eventId)s",
|
||||
"Thread root ID: %(threadRootId)s": "Thread root ID: %(threadRootId)s",
|
||||
"Unable to verify this device": "Unable to verify this device",
|
||||
"Verify this device": "Verify this device",
|
||||
"Device verified": "Device verified",
|
||||
|
Loading…
Reference in New Issue
Block a user