From 44891a17fdd44cc2e90e75d9b59b989683084a62 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni <31625338+alexandraB99@users.noreply.github.com> Date: Fri, 5 May 2023 17:01:34 +0300 Subject: [PATCH] [createCommunity]: added wrap mode in community key Closes #10325 --- ui/imports/shared/popups/ImportCommunityPopup.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/imports/shared/popups/ImportCommunityPopup.qml b/ui/imports/shared/popups/ImportCommunityPopup.qml index 5645bbeb05..7a46ebda9d 100644 --- a/ui/imports/shared/popups/ImportCommunityPopup.qml +++ b/ui/imports/shared/popups/ImportCommunityPopup.qml @@ -81,9 +81,10 @@ StatusDialog { StatusTextArea { id: keyInput - placeholderText: "0x0..." - height: 110 Layout.fillWidth: true + implicitHeight: 110 + placeholderText: "0x0..." + wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere onTextChanged: d.importErrorMessage = "" }