fix: 修复定时报告开启首选项定时报告的默认参数赋值问题 (#17078)

This commit is contained in:
王嘉豪
2025-09-25 14:21:04 +08:00
committed by GitHub
parent bb320e42bf
commit ffb5d05c17

View File

@@ -162,7 +162,9 @@ export function historyItemAdaptor(
) {
componentItem.propValue?.forEach((filterItem, index) => {
if (reportFilterInfo[filterItem.id]) {
componentItem.propValue[index] = JSON.parse(reportFilterInfo[filterItem.id].filterInfo)
const mergeItem = JSON.parse(reportFilterInfo[filterItem.id].filterInfo)
mergeItem['defaultValueFirstItem'] = false
componentItem.propValue[index] = mergeItem
}
})
}