From bb8d54c48b9df900e3b4733b7f8c6da19b50d4a1 Mon Sep 17 00:00:00 2001 From: Joel Date: Wed, 6 Aug 2025 16:59:46 +0800 Subject: [PATCH] chore: fix hitl not full --- .../base/prompt-editor/plugins/hitl-input-block/component.tsx | 2 +- .../base/prompt-editor/plugins/hitl-input-block/node.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/components/base/prompt-editor/plugins/hitl-input-block/component.tsx b/web/app/components/base/prompt-editor/plugins/hitl-input-block/component.tsx index acf2a8be03..3020ad2194 100644 --- a/web/app/components/base/prompt-editor/plugins/hitl-input-block/component.tsx +++ b/web/app/components/base/prompt-editor/plugins/hitl-input-block/component.tsx @@ -21,7 +21,7 @@ const HITLInputComponent: FC = ({ return (
{ createDOM(): HTMLElement { const div = document.createElement('div') - div.classList.add('flex', 'w-full', 'items-center', 'align-middle') + div.classList.add('flex', 'items-center', 'align-middle') return div }