Skip to content

Commit

Permalink
Merge pull request #895 from AtlasOfLivingAustralia/894-fix-for-conse…
Browse files Browse the repository at this point in the history
…rvation-lists

#894 fix inclusion of conservation list values in facet download
  • Loading branch information
adam-collins authored Apr 11, 2024
2 parents 7da8f37 + 1f57b85 commit 7ed6bc3
Show file tree
Hide file tree
Showing 3 changed files with 161 additions and 114 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private Map<String, Set<String>> getItemsMap(Map speciesLists, boolean conservat
String status = "";
if (item.kvpValues != null) {
for (KvpDTO m : item.kvpValues) {
if (m.key != null) {
if (m.key != null && "status".equalsIgnoreCase(m.key)) {
status = ": " + m.value;
}
}
Expand Down
Loading

0 comments on commit 7ed6bc3

Please sign in to comment.