[stats wf] indicators across stats dbs & updates in the org ids #248

Closed
dimitris.pierrakos wants to merge 1742 commits from beta into beta2master_sept_2022
1 changed files with 2 additions and 0 deletions
Showing only changes of commit a109ebe287 - Show all commits

View File

@ -105,6 +105,8 @@ public class MapDocumentUtil {
public static String truncateValue(String value, int length) {
if (value == null)
return "";
if (length == -1 || length > value.length())
return value;