web: show message-ID when viewing thread

This commit is contained in:
2023-12-02 16:35:37 -08:00
parent ac5660a6d0
commit 071fe2e206
3 changed files with 18 additions and 0 deletions

View File

@@ -263,6 +263,7 @@ fn view_thread(thread: &ShowThreadQueryThread) -> Node<Msg> {
.map(|from| div![C!["header"], "From: ", view_address(&from)]),
msg.timestamp
.map(|ts| div![C!["header"], "Date: ", human_age(ts)]),
div!["Message-ID: ", &msg.id],
div![
C!["header"],
IF!(!msg.to.is_empty() => span!["To: ", view_addresses(&msg.to)]),