mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Added Fix for ACS-3960
This commit is contained in:
@@ -179,7 +179,7 @@ public class TagsImpl implements Tags
|
||||
for (Pair<NodeRef, String> pair : page)
|
||||
{
|
||||
Tag selectedTag = new Tag(pair.getFirst(), pair.getSecond());
|
||||
selectedTag.setCount(tagsByCountMap.get(selectedTag.getTag()) == null ? 0 : tagsByCountMap.get(selectedTag.getTag()));
|
||||
selectedTag.setCount((tagsByCountMap.get(selectedTag.getTag()) == null ) ? 0 : tagsByCountMap.get(selectedTag.getTag()));
|
||||
tags.add(selectedTag);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user