Fix: Fixed an issue where parser configurations could be added infinitely #9869 (#10464)

### What problem does this PR solve?

Fix: Fixed an issue where parser configurations could be added
infinitely #9869

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2025-10-10 16:30:13 +08:00
committed by GitHub
parent fc46d6bb87
commit f35c5ed119
12 changed files with 83 additions and 56 deletions

View File

@ -42,7 +42,7 @@ export function Banner() {
export function NextBanner() {
const { t } = useTranslation();
return (
<section className="text-5xl pt-10 pb-14 font-bold">
<section className="text-5xl pt-10 pb-14 font-bold px-10">
<span className="text-text-primary">{t('header.welcome')}</span>
<span className="pl-3 text-transparent bg-clip-text bg-gradient-to-l from-[#40EBE3] to-[#4A51FF]">
RAGFlow

View File

@ -4,15 +4,13 @@ import { Datasets } from './datasets';
const Home = () => {
return (
<div className="mx-8">
<section>
<NextBanner></NextBanner>
<section className="h-[calc(100dvh-260px)] overflow-auto scrollbar-thin">
<Datasets></Datasets>
<Applications></Applications>
</section>
<section>
<NextBanner></NextBanner>
<section className="h-[calc(100dvh-260px)] overflow-auto px-10">
<Datasets></Datasets>
<Applications></Applications>
</section>
</div>
</section>
);
};