bug fix display and load

This commit is contained in:
Bendt
2025-12-18 13:29:56 -05:00
parent 4dbb7c5fea
commit 8244bd94c9
7 changed files with 68 additions and 11 deletions

View File

@@ -147,6 +147,9 @@ class EnvelopeListItem(Static):
date_str = date_str.replace("Z", "+00:00")
dt = datetime.fromisoformat(date_str)
# Convert to local timezone
dt = dt.astimezone()
parts = []
if self.config.show_date:
parts.append(dt.strftime(self.config.date_format))