mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 06:46:40 +08:00
### What problem does this PR solve? Fix: Optimize list display and rename functionality #3221 - Updated the homepage search list display style and added rename functionality - Used the RenameDialog component for rename searches - Optimized list height calculation - Updated the style and layout of related pages - fix issue #9779 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
20 lines
466 B
TypeScript
20 lines
466 B
TypeScript
import { Applications } from './applications';
|
|
import { NextBanner } from './banner';
|
|
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>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|