From 5a6227809799da8f6e8231bbb13062d1f95b8a31 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 15 Apr 2022 10:16:00 +0200 Subject: [PATCH] Fix display of username CURA-9146 --- 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 d7677264fb..c8642681ae 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.charAt(0).toUpperCase() font: UM.Theme.getFont("large_bold") horizontalAlignment: Text.AlignHCenter }