From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/base/chat/chat/answer/suggested-questions.tsx | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/app/components/base/chat/chat/answer/suggested-questions.tsx b/app/components/base/chat/chat/answer/suggested-questions.tsx index 8b64bff..dd8e79b 100644 --- a/app/components/base/chat/chat/answer/suggested-questions.tsx +++ b/app/components/base/chat/chat/answer/suggested-questions.tsx @@ -10,7 +10,6 @@ item, }) => { const { onSend } = useChatContext() - const { isOpeningStatement, suggestedQuestions, @@ -24,7 +23,7 @@ {suggestedQuestions.filter(q => !!q && q.trim()).map((question, index) => ( <div key={index} - className='system-sm-medium mr-1 mt-1 inline-flex max-w-full shrink-0 cursor-pointer flex-wrap rounded-lg border-[0.5px] border-components-button-secondary-border bg-components-button-secondary-bg px-3.5 py-2 text-components-button-secondary-accent-text shadow-xs last:mr-0 hover:border-components-button-secondary-border-hover hover:bg-components-button-secondary-bg-hover' + className='mt-1 mr-1 max-w-full last:mr-0 shrink-0 py-[5px] leading-[18px] items-center px-4 rounded-lg border border-gray-200 shadow-xs bg-white text-xs font-medium text-primary-600 cursor-pointer' onClick={() => onSend?.(question)} > {question} -- Gitblit v1.8.0