From e3b7f8afdd99c37775aa54f34f5dc7267ccaa85b Mon Sep 17 00:00:00 2001 From: JzoNg Date: Wed, 30 Jul 2025 17:00:04 +0800 Subject: [PATCH] memory list --- .../base/chat/chat-with-history/memory/index.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/web/app/components/base/chat/chat-with-history/memory/index.tsx b/web/app/components/base/chat/chat-with-history/memory/index.tsx index 20573a7f42..c3cc99bd4a 100644 --- a/web/app/components/base/chat/chat-with-history/memory/index.tsx +++ b/web/app/components/base/chat/chat-with-history/memory/index.tsx @@ -2,8 +2,10 @@ import React from 'react' import { useTranslation } from 'react-i18next' import { RiCloseLine, + RiDeleteBinLine, } from '@remixicon/react' import ActionButton from '@/app/components/base/action-button' +import Button from '@/app/components/base/button' import { useChatWithHistoryContext, } from '../context' @@ -21,17 +23,24 @@ const MemoryPanel: React.FC = ({ showChatMemory }) => { return (
-
+
{t('share.chat.memory.title')}
setShowChatMemory(false)}>
-
{/* Memory content goes here */} +
+
+ +
+
) }