fix(PRofileShowcase): Fixing conflict merge error
This commit is contained in:
parent
7fa3771e4e
commit
684fb787a6
|
@ -58,6 +58,13 @@ QObject {
|
|||
name: "membersCount"
|
||||
expression: model.members.count
|
||||
expectedRoles: ["members"]
|
||||
},
|
||||
FastExpressionRole {
|
||||
name: "showcaseVisibility"
|
||||
expression: getShowcaseVisibility()
|
||||
function getShowcaseVisibility() {
|
||||
return Constants.ShowcaseVisibility.Everyone
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -79,6 +86,13 @@ QObject {
|
|||
name: "saved"
|
||||
expression: root.isAddressSaved(model.address)
|
||||
expectedRoles: ["address"]
|
||||
},
|
||||
FastExpressionRole {
|
||||
name: "showcaseVisibility"
|
||||
expression: getShowcaseVisibility()
|
||||
function getShowcaseVisibility() {
|
||||
return Constants.ShowcaseVisibility.Everyone
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -92,6 +106,13 @@ QObject {
|
|||
name: "showcaseKey"
|
||||
expression: model.uid
|
||||
expectedRoles: ["uid"]
|
||||
},
|
||||
FastExpressionRole {
|
||||
name: "showcaseVisibility"
|
||||
expression: getShowcaseVisibility()
|
||||
function getShowcaseVisibility() {
|
||||
return Constants.ShowcaseVisibility.Everyone
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -241,8 +241,6 @@ Control {
|
|||
}
|
||||
|
||||
onClicked: {
|
||||
print ("!!communitiesProxyModel", JSON.stringify(StatusQUtils.ModelUtils.modelToArray(communitiesProxyModel)))
|
||||
|
||||
if (root.readOnly)
|
||||
return
|
||||
root.closeRequested()
|
||||
|
|
Loading…
Reference in New Issue