fix(nim/module): fix default tooltip for Chat section

provide the default "Chat" name for the personal chat
This commit is contained in:
Lukáš Tinkl 2022-07-04 14:03:49 +02:00 committed by Lukáš Tinkl
parent 79398ffe77
commit 6c155092a4
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ proc createChannelGroupItem[T](self: Module[T], c: ChannelGroupDto): SectionItem
result = initItem( result = initItem(
c.id, c.id,
if isCommunity: SectionType.Community else: SectionType.Chat, if isCommunity: SectionType.Community else: SectionType.Chat,
c.name, if isCommunity: c.name else: "Chat",
c.admin, c.admin,
c.description, c.description,
c.introMessage, c.introMessage,