wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
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>