Update roles/home/aichat.nix

This commit is contained in:
Giulio De Pasquale 2024-07-01 18:20:31 +01:00
parent fe6d156580
commit 047c36f1ca

View File

@ -61,8 +61,8 @@ roles = ''
@@ -5,7 +5,7 @@ export function formatDate(date) {
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
- return `${year}-${month}-${day}`;
+ return `${year}/${month}/${day}`;
- return `$${year}-$${month}-$${day}`;
+ return `$${year}/$${month}/$${day}`;
}
### OUTPUT: