Skip to content

Commit

Permalink
corrected date order in csv
Browse files Browse the repository at this point in the history
  • Loading branch information
manglemix committed Jan 15, 2025
1 parent b6629d0 commit 317b177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr-web/src/routes/(apps)/manifest/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
const day = String(date.getDate()).padStart(2, '0');
const month = String(date.getMonth() + 1).padStart(2, '0');
const year = String(date.getFullYear()).slice(-2);
return `${s.status}: ${day}/${month}/${year}`;
return `${s.status}: ${month}/${day}/${year}`;
})
.join(',');
const sub = (o.count * (o.unit_cost as number)).toFixed(2);
Expand Down

0 comments on commit 317b177

Please sign in to comment.