change long date to short date

This commit is contained in:
Peter Maquiran
2024-07-09 13:36:35 +01:00
parent a26fbbddba
commit 4f51cb5550
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -379,7 +379,7 @@ export class ListBoxService {
const hours = Math.floor((totalMinutes % (60 * 24)) / 60);
const minutes = totalMinutes % 60;
return `${days}d ${hours}h ${minutes}m`
return `${days}d`
}