Skip to content

Commit 2133b4e

Browse files
committed
refactor:getRuntimeDateLevelFields
1 parent 0d21e13 commit 2133b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/utils/chartHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ export const getChartsAllRows = (configs?: ChartDataConfig[]) => {
15881588

15891589
export const getRuntimeDateLevelFields = (rows: any) => {
15901590
const _rows = CloneValueDeep(rows);
1591-
_rows.forEach((v, i) => {
1591+
_rows?.forEach((v, i) => {
15921592
const symbolData = v?.[RUNTIME_DATE_LEVEL_KEY];
15931593
if (symbolData) {
15941594
_rows[i] = symbolData;

0 commit comments

Comments
 (0)