summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/components/mail/view/thread.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/src/components/mail/view/thread.rs b/ui/src/components/mail/view/thread.rs
index e0b8a0b8..2e137e4a 100644
--- a/ui/src/components/mail/view/thread.rs
+++ b/ui/src/components/mail/view/thread.rs
@@ -187,8 +187,7 @@ impl ThreadView {
let subject = envelope.subject();
highlight_reply_subjects.push(Some(subject.grapheme_width()));
format!(
- " {}{} - {} {}",
- " ".repeat(e.index.0 * 4),
+ " {} - {} {}",
envelope.date_as_str(),
envelope.field_from_to_string(),
envelope.subject(),
@@ -196,8 +195,7 @@ impl ThreadView {
} else {
highlight_reply_subjects.push(None);
format!(
- " {}{} - {}",
- " ".repeat(e.index.0 * 4),
+ " {} - {}",
envelope.date_as_str(),
envelope.field_from_to_string(),
)