mirror of
https://github.com/dataease/dataease.git
synced 2026-05-16 05:50:45 +08:00
fix: 下钻字段容错
This commit is contained in:
@@ -304,7 +304,7 @@ public class ChartViewService {
|
||||
if (StringUtils.equalsIgnoreCase(dto.getId(), chartViewFieldDTO.getId())) {
|
||||
isDrill = true;
|
||||
DatasetTableField datasetTableField = dataSetTableFieldsService.get(dto.getId());
|
||||
if (ObjectUtils.isNotEmpty(datasetTableField)) {
|
||||
if (ObjectUtils.isEmpty(datasetTableField)) {
|
||||
DEException.throwException(Translator.get("i18n_drill_field_not_exist"));
|
||||
}
|
||||
ChartViewFieldDTO d = new ChartViewFieldDTO();
|
||||
|
||||
Reference in New Issue
Block a user