mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix(ui): sorting created at
This commit is contained in:
parent
404579b434
commit
6b4ec55e64
@ -244,7 +244,7 @@ const Project = (
|
||||
break;
|
||||
case "createdAt":
|
||||
comparison =
|
||||
new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime();
|
||||
new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime();
|
||||
break;
|
||||
default:
|
||||
comparison = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user