fix: Token Master permission missing token name (#14609)
This commit is contained in:
parent
3a57a63605
commit
ceee230244
|
@ -184,8 +184,20 @@ StackView {
|
|||
|
||||
viewWidth: root.viewWidth
|
||||
|
||||
SortFilterProxyModel {
|
||||
id: nonOwnerCollectibles
|
||||
sourceModel: root.collectiblesModel
|
||||
filters: [
|
||||
ValueFilter {
|
||||
roleName: "privilegesLevel"
|
||||
value: Constants.TokenPrivilegesLevel.Owner
|
||||
inverted: true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
assetsModel: root.assetsModel
|
||||
collectiblesModel: root.collectiblesModel
|
||||
collectiblesModel: nonOwnerCollectibles
|
||||
channelsModel: allChannelsTransformed
|
||||
communityDetails: root.communityDetails
|
||||
showChannelSelector: root.showChannelSelector
|
||||
|
|
|
@ -304,18 +304,7 @@ StatusSectionLayout {
|
|||
|
||||
assetsModel: rootStore.assetsModel
|
||||
|
||||
SortFilterProxyModel {
|
||||
id: nonOwnerCollectibles
|
||||
sourceModel: rootStore.collectiblesModel
|
||||
filters: [
|
||||
ValueFilter {
|
||||
roleName: "privilegesLevel"
|
||||
value: Constants.TokenPrivilegesLevel.Owner
|
||||
inverted: true
|
||||
}
|
||||
]
|
||||
}
|
||||
collectiblesModel: nonOwnerCollectibles
|
||||
collectiblesModel: rootStore.collectiblesModel
|
||||
channelsModel: rootStore.chatCommunitySectionModule.model
|
||||
|
||||
communityDetails: d.communityDetails
|
||||
|
|
Loading…
Reference in New Issue