From ecbe54798fe13fc96871920bed477ee49708b8ef Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 7 Jan 2026 13:00:58 +0100 Subject: [PATCH] Manually cherry-pick a little fix to main. --- resources/qml/Account/UserOperations.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml index 52d9cfc344..70000d97da 100644 --- a/resources/qml/Account/UserOperations.qml +++ b/resources/qml/Account/UserOperations.qml @@ -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 }