We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6629d0 commit 317b177Copy full SHA for 317b177
usr-web/src/routes/(apps)/manifest/+page.svelte
@@ -118,7 +118,7 @@
118
const day = String(date.getDate()).padStart(2, '0');
119
const month = String(date.getMonth() + 1).padStart(2, '0');
120
const year = String(date.getFullYear()).slice(-2);
121
- return `${s.status}: ${day}/${month}/${year}`;
+ return `${s.status}: ${month}/${day}/${year}`;
122
})
123
.join(',');
124
const sub = (o.count * (o.unit_cost as number)).toFixed(2);
0 commit comments