collection groups should be children to mainframe

pull/53/head
Zlatin Balevsky 2020-11-03 06:02:13 +00:00
parent 12d89d696b
commit 05284a2ad6
No known key found for this signature in database
GPG Key ID: A72832072D525E41
2 changed files with 4 additions and 4 deletions

View File

@ -156,6 +156,6 @@ class BrowseController {
params['infoHashes'] = event.collections.collect()
params['uuid'] = uuid
params['host'] = event.sender
mvcGroup.createMVCGroup("collection-tab", uuid.toString(), params)
mvcGroup.parentGroup.createMVCGroup("collection-tab", uuid.toString(), params)
}
}

View File

@ -106,7 +106,7 @@ class SearchTabController {
params['host'] = sender
params['core'] = core
mvcGroup.createMVCGroup("browse", groupId, params)
mvcGroup.parentGroup.createMVCGroup("browse", groupId, params)
}
@ControllerAction
@ -122,7 +122,7 @@ class SearchTabController {
params['everything'] = true
params['uuid'] = uuid
params['host'] = sender
mvcGroup.createMVCGroup("collection-tab", uuid.toString(), params)
mvcGroup.parentGroup.createMVCGroup("collection-tab", uuid.toString(), params)
}
@ControllerAction
@ -193,6 +193,6 @@ class SearchTabController {
params['infoHashes'] = event.collections.collect()
params['uuid'] = uuid
params['host'] = event.sender
mvcGroup.createMVCGroup("collection-tab", uuid.toString(), params)
mvcGroup.parentGroup.createMVCGroup("collection-tab", uuid.toString(), params)
}
}