CollectionLink display ignores case

Hi!

Scenario:

Collection 1 example items:
[
{
name: “Foo Bar”
},
{
name: “Whatever”
}
]

Collection 2 has a collectionLink field that links entries from collection 1.
{
“link”: “collection1”,
“multiple”: true,
“display”: “name”
}

Everything works fine, I’m getting all collection1 entries in queries for a collection 2 item, BUT: Cockpit skrews up collection 1 item names that have a blank.

This is what I’m expecting for item 1 of collection 1:
{
display: “Foo Bar”

}

This is what I’m getting (lowercase “bar” instead of “Bar”):

{
display: “Foo bar”

}

Any ideas what might cause this?
Thanks!