WIP - refresh list after AI record creation
This commit is contained in:
@@ -53,6 +53,17 @@ const handleSend = async () => {
|
||||
role: 'assistant',
|
||||
text: response.reply || 'Let me know what else you need.',
|
||||
})
|
||||
|
||||
if (response.action === 'create_record') {
|
||||
window.dispatchEvent(
|
||||
new CustomEvent('ai-record-created', {
|
||||
detail: {
|
||||
objectApiName: buildContext().objectApiName,
|
||||
record: response.record,
|
||||
},
|
||||
}),
|
||||
)
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.error('Failed to send AI chat message:', error)
|
||||
messages.value.push({
|
||||
|
||||
Reference in New Issue
Block a user