parent
a5954d3bf3
commit
816f737d55
|
@ -84,7 +84,7 @@ StatusModal {
|
|||
}
|
||||
validators: [StatusMinLengthValidator {
|
||||
minLength: 1
|
||||
errorMessage: Utils.getErrorMessage(errors, qsTr("channel name"))
|
||||
errorMessage: Utils.getErrorMessage(nameInput.errors, qsTr("channel name"))
|
||||
}]
|
||||
}
|
||||
|
||||
|
@ -103,7 +103,7 @@ StatusModal {
|
|||
input.implicitHeight: 88
|
||||
validators: [StatusMinLengthValidator {
|
||||
minLength: 1
|
||||
errorMessage: Utils.getErrorMessage(errors, qsTr("channel description"))
|
||||
errorMessage: Utils.getErrorMessage(descriptionTextArea.errors, qsTr("channel description"))
|
||||
}]
|
||||
}
|
||||
|
||||
|
|
|
@ -104,6 +104,7 @@ StatusPopupMenu {
|
|||
enabled: communityActive &&
|
||||
root.store.chatsModelInst.communities.activeCommunity.admin
|
||||
onTriggered: openPopup(editChannelPopup, {
|
||||
store: root.store,
|
||||
communityId: root.store.chatsModelInst.communities.activeCommunity.id,
|
||||
channel: chatItem
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue