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/datasets/create/website/base/crawling.tsx | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/components/datasets/create/website/base/crawling.tsx b/app/components/datasets/create/website/base/crawling.tsx
index 915f17d..ee26e76 100644
--- a/app/components/datasets/create/website/base/crawling.tsx
+++ b/app/components/datasets/create/website/base/crawling.tsx
@@ -2,6 +2,7 @@
import type { FC } from 'react'
import React from 'react'
import { useTranslation } from 'react-i18next'
+import cn from '@/utils/classnames'
import { RowStruct } from '@/app/components/base/icons/src/public/other'
type Props = {
@@ -18,16 +19,15 @@
const { t } = useTranslation()
return (
- <div className={className}>
- <div className='flex h-[34px] items-center border-y-[0.5px] border-divider-regular px-4
- text-xs text-text-tertiary shadow-xs shadow-shadow-shadow-3'>
+ <div className={cn(className, 'border-t border-gray-200')}>
+ <div className='flex items-center h-[34px] px-4 bg-gray-50 shadow-xs border-b-[0.5px] border-black/8 text-xs font-normal text-gray-700'>
{t('datasetCreation.stepOne.website.totalPageScraped')} {crawledNum}/{totalNum}
</div>
<div className='p-2'>
{['', '', '', ''].map((item, index) => (
<div className='py-[5px]' key={index}>
- <RowStruct className='text-text-quaternary' />
+ <RowStruct />
</div>
))}
</div>
--
Gitblit v1.8.0