diff --git a/projects/app/src/components/core/chat/ChatContainer/ChatBox/components/ResponseTags.tsx b/projects/app/src/components/core/chat/ChatContainer/ChatBox/components/ResponseTags.tsx index 868f05bc06..61528e00fd 100644 --- a/projects/app/src/components/core/chat/ChatContainer/ChatBox/components/ResponseTags.tsx +++ b/projects/app/src/components/core/chat/ChatContainer/ChatBox/components/ResponseTags.tsx @@ -58,7 +58,7 @@ const ResponseTags = ({ } = useMemo(() => { return { ...addStatisticalDataToHistoryItem(historyItem), - ...(isShowCite + ...(!isShowCite ? { totalQuoteList: [] } diff --git a/projects/app/src/pageComponents/app/detail/Publish/Playground/index.tsx b/projects/app/src/pageComponents/app/detail/Publish/Playground/index.tsx index 88d7a35112..69d59106e5 100644 --- a/projects/app/src/pageComponents/app/detail/Publish/Playground/index.tsx +++ b/projects/app/src/pageComponents/app/detail/Publish/Playground/index.tsx @@ -32,6 +32,7 @@ const PlaygroundVisibilityConfig = ({ appId }: { appId: string }) => { const showCite = watch('showCite'); const showFullText = watch('showFullText'); const canDownloadSource = watch('canDownloadSource'); + const showRunningStatus = watch('showRunningStatus'); const playgroundLink = useMemo(() => { if (typeof window !== 'undefined') { @@ -114,6 +115,7 @@ const PlaygroundVisibilityConfig = ({ appId }: { appId: string }) => { {...register('showRunningStatus', { onChange: autoSave })} + isChecked={showRunningStatus} />