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/explore/index.tsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/explore/index.tsx b/app/components/explore/index.tsx index 5175b46..cef6573 100644 --- a/app/components/explore/index.tsx +++ b/app/components/explore/index.tsx @@ -24,7 +24,7 @@ const [installedApps, setInstalledApps] = useState<InstalledApp[]>([]) useEffect(() => { - document.title = `${t('explore.title')} - Dify`; + document.title = `${t('explore.title')} - Dify`; (async () => { const { accounts } = await fetchMembers({ url: '/workspaces/current/members', params: {} }) if (!accounts) @@ -40,7 +40,7 @@ }, [isCurrentWorkspaceDatasetOperator]) return ( - <div className='flex h-full overflow-hidden border-t border-divider-regular bg-background-body'> + <div className='flex h-full bg-gray-100 border-t border-gray-200 overflow-hidden'> <ExploreContext.Provider value={ { @@ -53,7 +53,7 @@ } > <Sidebar controlUpdateInstalledApps={controlUpdateInstalledApps} /> - <div className='w-0 grow'> + <div className='grow w-0'> {children} </div> </ExploreContext.Provider> -- Gitblit v1.8.0