fix(nim/module): fix default tooltip for Chat section
provide the default "Chat" name for the personal chat
This commit is contained in:
parent
79398ffe77
commit
6c155092a4
|
@ -201,7 +201,7 @@ proc createChannelGroupItem[T](self: Module[T], c: ChannelGroupDto): SectionItem
|
|||
result = initItem(
|
||||
c.id,
|
||||
if isCommunity: SectionType.Community else: SectionType.Chat,
|
||||
c.name,
|
||||
if isCommunity: c.name else: "Chat",
|
||||
c.admin,
|
||||
c.description,
|
||||
c.introMessage,
|
||||
|
|
Loading…
Reference in New Issue