mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
feat: allow to just input service to sso login
This commit is contained in:
parent
0cb3a7e4a7
commit
e6cbf560a0
1 changed files with 1 additions and 2 deletions
|
@ -105,11 +105,10 @@ Item {
|
||||||
MatrixTextField {
|
MatrixTextField {
|
||||||
id: hsLabel
|
id: hsLabel
|
||||||
enabled: visible
|
enabled: visible
|
||||||
visible: login.homeserverNeeded
|
|
||||||
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
label: qsTr("Homeserver address")
|
label: qsTr("Homeserver address")
|
||||||
placeholderText: qsTr("server.my:8787")
|
placeholderText: login.homeserverNeeded ? qsTr("need a homeserver, forExample: server.my:8787") : qsTr("martix.org")
|
||||||
text: login.homeserver
|
text: login.homeserver
|
||||||
onEditingFinished: login.homeserver = text
|
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")
|
ToolTip.text: qsTr("The address that can be used to contact you homeserver's client API.\nExample: https://server.my:8787")
|
||||||
|
|
Loading…
Reference in a new issue