don't serialize UI-only chat history widget

This commit is contained in:
bymyself
2025-05-29 16:59:32 -07:00
parent 0cdaa512c8
commit ad0c587f20

View File

@@ -32,7 +32,8 @@ export const useChatHistoryWidget = (
setValue: (value: string | object) => {
widgetValue.value = typeof value === 'string' ? value : String(value)
},
getMinHeight: () => 400 + PADDING
getMinHeight: () => 400 + PADDING,
serialize: false
}
})
addWidget(node, widget)