diff options
author | bobzel <zzzman@gmail.com> | 2025-02-12 13:54:42 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-02-12 13:54:42 -0500 |
commit | 39acf8be3a3c245b6f525360ccc8673da632f960 (patch) | |
tree | 1c8088cc5302ace68dc4d3b2500ac82d341476c6 | |
parent | 5d738b4fe832ef1c554448440ede237c32632d10 (diff) |
chat box fits width by default
-rw-r--r-- | src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx index f8fe531ab..16da360fc 100644 --- a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx +++ b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx @@ -1046,5 +1046,5 @@ export class ChatBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { */ Docs.Prototypes.TemplateMap.set(DocumentType.CHAT, { layout: { view: ChatBox, dataField: 'data' }, - options: { acl: '', chat: '', chat_history: '', chat_thread_id: '', chat_assistant_id: '', chat_vector_store_id: '' }, + options: { acl: '', _layout_fitWidth: true, chat: '', chat_history: '', chat_thread_id: '', chat_assistant_id: '', chat_vector_store_id: '' }, }); |