feat(note): created at show full date format

This commit is contained in:
Fernando López Guevara
2025-07-28 20:20:50 -03:00
parent ab84304265
commit a64ff3b630

View File

@@ -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()
}