Data store formatting fixes

This commit is contained in:
crschnick 2024-09-13 18:55:13 +00:00
parent ccb8888df2
commit 5c074615db

View file

@ -61,6 +61,10 @@ public class DataStoreFormatter {
return null; return null;
} }
if (name.isEmpty()) {
return name;
}
return name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase(); return name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
} }