mirror of
https://github.com/dataease/dataease.git
synced 2026-05-14 21:12:33 +08:00
fix: 修复定时报告开启首选项定时报告的默认参数赋值问题 (#17078)
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user