Deprecate explicit chat database selection components and hooks, standardizing workflow confirmation dialogs to reference 'Knowledge' instead of specific libraries.

This commit is contained in:
2026-06-16 23:38:30 +02:00
parent adb7ba7f8e
commit 124581744c
5 changed files with 2 additions and 228 deletions

View File

@@ -8,7 +8,7 @@ export default function WorkflowConfirmationDialog({ confirmation, onRespond })
<div className="workflow-confirmation-dialog">
<h3>Confirm workflow action</h3>
<p>This workflow wants to run <code>{confirmation.payload?.tool}</code>.</p>
{args.library_slug && <p><strong>Destination:</strong> {args.library_slug}</p>}
{args.library_slug && <p><strong>Destination:</strong> Knowledge</p>}
{args.title && <p><strong>Title:</strong> {args.title}</p>}
{args.message_id && <p><strong>Message:</strong> {args.message_id}</p>}
{args.url && <p><strong>URL:</strong> {args.url}</p>}