aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/util/SearchUtil.ts2
-rw-r--r--src/client/views/nodes/EquationBox.tsx4
-rw-r--r--src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/client/util/SearchUtil.ts b/src/client/util/SearchUtil.ts
index 2f23d07dc..8077445f6 100644
--- a/src/client/util/SearchUtil.ts
+++ b/src/client/util/SearchUtil.ts
@@ -59,7 +59,7 @@ export namespace SearchUtil {
* An array of all field names used by the Doc or its prototypes.
*/
export function documentKeys(doc: Doc) {
- return Object.keys(Doc.GetAllPrototypes(doc).filter(proto => proto).reduce(
+ return Array.from(Doc.GetAllPrototypes(doc).filter(proto => proto).reduce(
(keys, proto) => {
Object.keys(proto).forEach(keys.add.bind(keys));
return keys;
diff --git a/src/client/views/nodes/EquationBox.tsx b/src/client/views/nodes/EquationBox.tsx
index 2ce24b688..3549cc5d3 100644
--- a/src/client/views/nodes/EquationBox.tsx
+++ b/src/client/views/nodes/EquationBox.tsx
@@ -70,7 +70,7 @@ export class EquationBox extends ViewBoxBaseComponent<FieldViewProps>() {
y: NumCast(this.layoutDoc.y) + NumCast(this.Document._height) + 10,
backgroundColor: StrCast(this.Document.backgroundColor),
color: StrCast(this.Document.color),
- fontSize: this.fontSize,
+ text_fontSize: this.fontSize,
});
DocumentView.SetSelectOnLoad(nextEq);
this._props.addDocument?.(nextEq);
@@ -158,7 +158,7 @@ Docs.Prototypes.TemplateMap.set(DocumentType.EQUATION, {
acl: '',
_xMargin: 10,
_yMargin: 10,
- fontSize: '14px',
+ text_fontSize: '14px',
_nativeWidth: 40,
_nativeHeight: 40,
_layout_reflowHorizontal: false,
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx
index acf6870c3..0294dd5a7 100644
--- a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx
+++ b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx
@@ -1551,5 +1551,5 @@ export class ChatBox extends ViewBoxAnnotatableComponent<FieldViewProps>() {
*/
Docs.Prototypes.TemplateMap.set(DocumentType.CHAT, {
layout: { view: ChatBox, dataField: 'data' },
- options: { acl: '', _layout_fitWidth: true, chat: '', chat_history: '', chat_thread_id: '', chat_assistant_id: '', chat_vector_store_id: '', _forceActive: true },
+ options: { acl: '', _layout_nativeDimEditable: true, _layout_fitWidth: true, chat: '', chat_history: '', chat_thread_id: '', chat_assistant_id: '', chat_vector_store_id: '', _forceActive: true },
});