### What problem does this PR solve? feat(dataset): Added data pipeline configuration functionality #9869 - Added a data pipeline selection component to link data pipelines with knowledge bases - Added file filtering functionality, supporting custom file filtering rules - Optimized the configuration interface layout, adjusting style and spacing - Introduced new icons and buttons to enhance the user experience ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import { FormContainerProps } from '@/components/form-container';
|
|
import { cn } from '@/lib/utils';
|
|
import { PropsWithChildren } from 'react';
|
|
|
|
export function ConfigurationFormContainer({
|
|
children,
|
|
className,
|
|
}: FormContainerProps) {
|
|
return <section className={cn('space-y-4', className)}>{children}</section>;
|
|
}
|
|
|
|
export function MainContainer({
|
|
children,
|
|
className,
|
|
}: PropsWithChildren & { className?: string }) {
|
|
return <section className={cn('space-y-5', className)}>{children}</section>;
|
|
}
|