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>
pull/2245/head
Kelrap 3 months ago committed by GitHub
parent 1843a2cd84
commit c740947551
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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…
Cancel
Save