We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7550c3b commit e4fa2d3Copy full SHA for e4fa2d3
chinook/app/front/src/components/MyInvoicesPage.jsx
@@ -25,7 +25,7 @@ const INVOICE_STATUS = {
25
};
26
const CANCELLED_STATUS = -1;
27
const DATE_TIME_FORMAT_PATTERN = 'LLLL';
28
-const UTC_DATE_TIME_FORMAT = 'YYYY-MM-DDThh:mm:ss';
+const UTC_DATE_TIME_FORMAT = 'YYYY-MM-DDThh:mm:ssZ';
29
const INVOICE_ITEMS_COLUMNS = [
30
{
31
title: 'Track name',
chinook/srv/browse-invoices-service.js
@@ -4,7 +4,7 @@ const moment = require("moment");
4
const LEVERAGE_DURATION = 1; // in hours. should be the same in the frontend
5
const CANCEL_STATUS = -1;
6
const SHIPPED_STATUS = 1;
7
-const UTC_DATE_TIME_FORMAT = "YYYY-MM-DDThh:mm:ss";
+const UTC_DATE_TIME_FORMAT = "YYYY-MM-DDThh:mm:ssZ";
8
9
function roundNumber(num) {
10
return Math.round((num + Number.EPSILON) * 100) / 100;
0 commit comments