Skip to content
Snippets Groups Projects
Unverified Commit e02b0f9b authored by Michael Clark's avatar Michael Clark Committed by GitHub
Browse files

:electron: Fix backup time format in electron (#2960)

* fix backup time in electron

* release notes

* bugfix not maintenance
parent 049a41f3
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ export async function getAvailableBackups(id: string): Promise<Backup[]> {
return backups.map(backup => ({
...backup,
date: backup.date ? dateFns.format(backup.date, 'yyyy-MM-dd h:mm') : null,
date: backup.date ? dateFns.format(backup.date, 'yyyy-MM-dd H:mm') : null,
}));
}
......
---
category: Bugfix
authors: [MikesGlitch]
---
Fix time display of backup on Electrons "Load Backup" modal
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment