Skip to content

Commit

Permalink
feat: allow to just input service to sso login
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Jul 8, 2023
1 parent 0cb3a7e commit 0453529
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions resources/qml/pages/LoginPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,10 @@ Item {
MatrixTextField {
id: hsLabel
enabled: visible
visible: login.homeserverNeeded

Layout.fillWidth: true
label: qsTr("Homeserver address")
placeholderText: qsTr("server.my:8787")
placeholderText: login.homeserverNeeded ? qsTr("need a homeserve :server.my:8787") : qsTr("martix.org")
text: login.homeserver
onEditingFinished: login.homeserver = text
ToolTip.text: qsTr("The address that can be used to contact you homeserver's client API.\nExample: https://server.my:8787")
Expand Down

0 comments on commit 0453529

Please sign in to comment.