From 77950e48c76f4a3b29d01831d43039caba29888a Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期二, 18 十一月 2025 14:12:42 +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