Skip to content

Commit

Permalink
MINOR: DI Missing Dashboard Description Status (#18018)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 authored Sep 30, 2024
1 parent 58ed12c commit fd75db3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ private Map<String, Object> enrichEntity(
.map(column -> CommonUtil.nullOrEmpty(column.getDescription()) ? 0 : 1)
.reduce(0, Integer::sum));
entityMap.put("hasDescription", CommonUtil.nullOrEmpty(entity.getDescription()) ? 0 : 1);
} else {
entityMap.put("hasDescription", CommonUtil.nullOrEmpty(entity.getDescription()) ? 0 : 1);
}

// Modify Custom Property key
Expand Down

0 comments on commit fd75db3

Please sign in to comment.