mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 16:47:25 +00:00
fix: channel chatType being a string instead of an int
This commit is contained in:
parent
5e03575285
commit
6c050bf381
@ -8,8 +8,8 @@ Rectangle {
|
|||||||
property string name: "channelName"
|
property string name: "channelName"
|
||||||
property string lastMessage: "My latest message\n with a return"
|
property string lastMessage: "My latest message\n with a return"
|
||||||
property string timestamp: "20/2/2020"
|
property string timestamp: "20/2/2020"
|
||||||
property string unviewedMessagesCount: "7"
|
property string unviewedMessagesCount: "2"
|
||||||
property string chatType: Constants.chatTypePublic
|
property int chatType: Constants.chatTypePublic
|
||||||
property string searchStr: ""
|
property string searchStr: ""
|
||||||
|
|
||||||
id: wrapper
|
id: wrapper
|
||||||
@ -56,7 +56,7 @@ Rectangle {
|
|||||||
anchors.leftMargin: Theme.padding
|
anchors.leftMargin: Theme.padding
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.topMargin: Theme.smallPadding
|
anchors.topMargin: Theme.smallPadding
|
||||||
visible: chatType !== Constants.chatTypeOneToOne
|
visible: wrapper.chatType !== Constants.chatTypeOneToOne
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user