Fix mailbox UI sorting and target layout

This commit is contained in:
DonVoo 2026-07-15 00:14:54 +02:00
parent 8e8c651eaa
commit e63a513cff
6 changed files with 196 additions and 46 deletions

View file

@ -198,7 +198,7 @@ func TestPlainMboxPartialIndexIsRebuiltBeforeList(t *testing.T) {
if len(entries) != 2 {
t.Fatalf("expected rebuilt full list with 2 entries, got %#v", entries)
}
if entries[0].Subject != "First" || entries[1].Subject != "Second" {
if entries[0].Subject != "Second" || entries[1].Subject != "First" {
t.Fatalf("unexpected entries after reindex: %#v", entries)
}
}