fix: draw community select bubble after community create (#14107)
This commit is contained in:
parent
2df380501c
commit
3b16f203b5
|
@ -500,6 +500,9 @@ proc getChannelGroups*(self: Controller): seq[ChannelGroupDto] =
|
|||
proc getActiveSectionId*(self: Controller): string =
|
||||
result = self.activeSectionId
|
||||
|
||||
proc setActiveSectionId*(self: Controller, sectionId: string) =
|
||||
self.activeSectionId = sectionId
|
||||
|
||||
proc getAllChats*(self: Controller): seq[ChatDto] =
|
||||
result = self.chatService.getAllChats()
|
||||
|
||||
|
@ -593,4 +596,3 @@ proc asyncGetRevealedAccountsForAllMembers*(self: Controller, communityId: strin
|
|||
|
||||
proc asyncReevaluateCommunityMembersPermissions*(self: Controller, communityId: string) =
|
||||
self.communityService.asyncReevaluateCommunityMembersPermissions(communityId)
|
||||
|
||||
|
|
|
@ -821,6 +821,7 @@ method setActiveSection*[T](self: Module[T], item: SectionItem, skipSavingInSett
|
|||
if(item.isEmpty()):
|
||||
echo "section is empty and cannot be made as active one"
|
||||
return
|
||||
self.controller.setActiveSectionId(item.id)
|
||||
self.activeSectionSet(item.id, skipSavingInSettings)
|
||||
|
||||
method setActiveSectionById*[T](self: Module[T], id: string) =
|
||||
|
|
Loading…
Reference in New Issue