* fix: full text search match query

* perf: mongo schema import, Avoid duplicate import

* feat: mongo log store

* doc

* fix: sandbox outputs

* perf: desc color

* fix: node init

* perf code

* perf: chat header
This commit is contained in:
Archer
2024-07-10 15:52:39 +08:00
committed by GitHub
parent f548e24e7d
commit e2ae571d15
21 changed files with 184 additions and 137 deletions

View File

@@ -164,8 +164,12 @@ const ChatHistorySlider = ({
px: 1
}}
list={[
{ label: t('core.chat.Recent use'), value: TabEnum.recently },
...(!isTeamChat ? [{ label: t('App'), value: TabEnum.app }] : []),
...(isTeamChat
? [{ label: t('App'), value: TabEnum.recently }]
: [
{ label: t('core.chat.Recent use'), value: TabEnum.recently },
{ label: t('App'), value: TabEnum.app }
]),
{ label: t('core.chat.History'), value: TabEnum.history }
]}
value={currentTab}
@@ -185,8 +189,8 @@ const ChatHistorySlider = ({
>
{t('core.chat.New Chat')}
</Button>
{(isPc || !showApps) && (
{/* Clear */}
{isPc && (
<IconButton
ml={3}
h={'100%'}