commit a64ff3b6304ad52201f2467d36d69e6b5db0b986
parent ab84304265e36b8beee398af5f7dbc39a4b0c56d
Author: Fernando LoĢpez Guevara <fernando.lguevara@gmail.com>
Date: Mon, 28 Jul 2025 20:20:50 -0300
feat(note): created at show full date format
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/notedeck/src/time.rs b/crates/notedeck/src/time.rs
@@ -88,7 +88,7 @@ pub fn time_format(_i18n: &mut Localization, timestamp: i64) -> String {
// TODO: format this using the selected locale
DateTime::from_timestamp(timestamp, 0)
.unwrap()
- .format("%Y-%m-%d %H:%M:%S")
+ .format("%l:%M %p %b %d, %Y")
.to_string()
}