mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-25 16:26:51 +08:00
### What problem does this PR solve? Feat: Remove unnecessary data from the dsl #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
3
web/src/pages/data-flow/log-sheet/dataflow-timeline.tsx
Normal file
3
web/src/pages/data-flow/log-sheet/dataflow-timeline.tsx
Normal file
@ -0,0 +1,3 @@
|
||||
export function DataflowTimeline() {
|
||||
return <div>xx</div>;
|
||||
}
|
||||
28
web/src/pages/data-flow/log-sheet/index.tsx
Normal file
28
web/src/pages/data-flow/log-sheet/index.tsx
Normal file
@ -0,0 +1,28 @@
|
||||
import {
|
||||
Sheet,
|
||||
SheetContent,
|
||||
SheetHeader,
|
||||
SheetTitle,
|
||||
} from '@/components/ui/sheet';
|
||||
import { IModalProps } from '@/interfaces/common';
|
||||
import { cn } from '@/lib/utils';
|
||||
import { NotebookText } from 'lucide-react';
|
||||
import 'react18-json-view/src/style.css';
|
||||
|
||||
type LogSheetProps = IModalProps<any>;
|
||||
|
||||
export function LogSheet({ hideModal }: LogSheetProps) {
|
||||
return (
|
||||
<Sheet open onOpenChange={hideModal} modal={false}>
|
||||
<SheetContent className={cn('top-20 right-[620px]')}>
|
||||
<SheetHeader>
|
||||
<SheetTitle className="flex items-center gap-1">
|
||||
<NotebookText className="size-4" />
|
||||
Log
|
||||
</SheetTitle>
|
||||
</SheetHeader>
|
||||
<section className="max-h-[82vh] overflow-auto mt-6"></section>
|
||||
</SheetContent>
|
||||
</Sheet>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user