mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 09:00:26 +00:00
Data store formatting fixes
This commit is contained in:
parent
ccb8888df2
commit
5c074615db
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue