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.
2 parents 538b7fe + c3a5c4d commit beeaaedCopy full SHA for beeaaed
app/javascript/components/provider-dashboard-charts/helpers.js
@@ -9,7 +9,7 @@ export const getConvertedData = (data, units) => {
9
columnsData.forEach((item, i) => {
10
const obj = {};
11
obj.group = units;
12
- obj.date = moment(item).tz(ManageIQ.timezone || 'UTC').format('MM/DD/YYYY HH:mm:ss z')
+ obj.date = moment(item).tz(ManageIQ.timezone || 'UTC').format('MM/DD/YYYY HH:mm:ss');
13
obj.value = rowsData[i];
14
arr.push(obj);
15
});
0 commit comments