fix column name date bug

This commit is contained in:
Francis Cao 2023-04-10 09:44:25 -07:00
parent f84e41e198
commit f5f6dc052e
2 changed files with 3 additions and 3 deletions

View file

@ -181,8 +181,8 @@ export function getDateArray(data, startDate, endDate, unit) {
const n = diff(endDate, startDate) + 1;
function findData(date) {
const d = data.find(({ x, t }) => {
return normalize(getDateFromString(x || t)).getTime() === date.getTime();
const d = data.find(({ x }) => {
return normalize(getDateFromString(x)).getTime() === date.getTime();
});
return d?.y || 0;