mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Show message history in reverse chronological order.
(imported from commit 6237369793044cec7ae8ffec42aaac5d443e2ce1)
This commit is contained in:
@@ -75,7 +75,7 @@ def get_realm_day_counts():
|
||||
|
||||
result = {}
|
||||
for domain in counts:
|
||||
cnts = [counts[domain].get(age, 0) for age in reversed(range(8))]
|
||||
cnts = [counts[domain].get(age, 0) for age in range(8)]
|
||||
min_cnt = min(cnts)
|
||||
max_cnt = max(cnts)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user