Shows bot settings on bot DM details page (#3582)
* Shows bot settings on bot DM details page * chore: show bot settings in DMs with bot settings state event --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
This commit is contained in:
parent
1843a2cd84
commit
c740947551
1 changed files with 3 additions and 1 deletions
|
|
@ -415,7 +415,9 @@ class RoomDetailsButtonRowState extends State<RoomDetailsButtonRow> {
|
|||
onSubmit: widget.controller.setBotOptions,
|
||||
),
|
||||
),
|
||||
visible: !room.isSpace && !room.isDirectChat && room.canInvite,
|
||||
visible: !room.isSpace &&
|
||||
(!room.isDirectChat || room.botOptions != null) &&
|
||||
room.canInvite,
|
||||
),
|
||||
ButtonDetails(
|
||||
title: l10n.chatCapacity,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue