fix(ui-test): fix sporadic failures to load CreateChannelPopupPage
thus also fixing the failing `tests/ui` in CI
This commit is contained in:
parent
ac9a240e25
commit
caa97737c7
|
@ -246,12 +246,7 @@ QtObject {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// Channel permissions model containing the temporarely edited permissions
|
||||
property WritableProxyModel channelPermissionsModel: WritableProxyModel {
|
||||
sourceModel: SortFilterProxyModel {
|
||||
id: filteredPermissionsModel
|
||||
|
||||
readonly property var filteredPermissionsModel: SortFilterProxyModel {
|
||||
sourceModel: root.permissionsModel
|
||||
|
||||
filters: [
|
||||
|
@ -266,6 +261,10 @@ QtObject {
|
|||
}
|
||||
]
|
||||
}
|
||||
|
||||
// Channel permissions model containing the temporarely edited permissions
|
||||
property WritableProxyModel channelPermissionsModel: WritableProxyModel {
|
||||
sourceModel: filteredPermissionsModel
|
||||
}
|
||||
|
||||
// Channels model containing the temporarely edited channel
|
||||
|
|
Loading…
Reference in New Issue