Skip to content

Commit 317b177

Browse files
committed
corrected date order in csv
1 parent b6629d0 commit 317b177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usr-web/src/routes/(apps)/manifest/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
const day = String(date.getDate()).padStart(2, '0');
119119
const month = String(date.getMonth() + 1).padStart(2, '0');
120120
const year = String(date.getFullYear()).slice(-2);
121-
return `${s.status}: ${day}/${month}/${year}`;
121+
return `${s.status}: ${month}/${day}/${year}`;
122122
})
123123
.join(',');
124124
const sub = (o.count * (o.unit_cost as number)).toFixed(2);

0 commit comments

Comments
 (0)