Return empty array instead of undefined in mapTimestampToAxisTicksByFormat

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 19:39:43 +08:00
parent 35d5b07b07
commit a669c8e98e
2 changed files with 3 additions and 2 deletions

View File

@@ -251,4 +251,5 @@ export const mapTimestampToAxisTicksByFormat = (timeStampArr, timeFormat) => {
if (timeStampArr) {
return timeStampArr.map((ts) => moment(ts).format(timeFormat));
}
return [];
};