Manually cherry-pick a little fix to main.

This commit is contained in:
Remco Burema 2026-01-07 13:00:58 +01:00
parent 0e93047669
commit ecbe54798f

View file

@ -46,7 +46,7 @@ Column
{
id: initialLabel
anchors.centerIn: parent
text: profile.username.charAt(0).toUpperCase()
text: profile.username ? profile.username.charAt(0).toUpperCase() : ""
font: UM.Theme.getFont("large_bold")
horizontalAlignment: Text.AlignHCenter
}