Skip to content

Commit beeaaed

Browse files
authored
Merge pull request #9371 from GilbertCherrie/fix_provider_dashboard_charts
Fix provider dashboard charts converted time bug
2 parents 538b7fe + c3a5c4d commit beeaaed

File tree

1 file changed

+1
-1
lines changed
  • app/javascript/components/provider-dashboard-charts

1 file changed

+1
-1
lines changed

app/javascript/components/provider-dashboard-charts/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const getConvertedData = (data, units) => {
99
columnsData.forEach((item, i) => {
1010
const obj = {};
1111
obj.group = units;
12-
obj.date = moment(item).tz(ManageIQ.timezone || 'UTC').format('MM/DD/YYYY HH:mm:ss z')
12+
obj.date = moment(item).tz(ManageIQ.timezone || 'UTC').format('MM/DD/YYYY HH:mm:ss');
1313
obj.value = rowsData[i];
1414
arr.push(obj);
1515
});

0 commit comments

Comments
 (0)