fix(图表): 时间类型下钻后路径显示错误

This commit is contained in:
wisonic
2025-01-22 16:06:03 +08:00
committed by wisonic-s
parent 550afadb31
commit 8e9e35949e

View File

@@ -341,7 +341,9 @@ public class ChartDataManage {
extFilterList = extFilterList.stream().peek(ele -> {
if (ObjectUtils.isNotEmpty(ele.getValue())) {
List<String> collect = ele.getValue().stream().map(SQLUtils::transKeyword).collect(Collectors.toList());
ele.setOriginValue(ele.getValue());
if (CollectionUtils.isEmpty(ele.getOriginValue())) {
ele.setOriginValue(ele.getValue());
}
ele.setValue(collect);
}
}).collect(Collectors.toList());