mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: add arxiv operator #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -9,6 +9,7 @@ import styles from './index.less';
|
||||
interface IProps {
|
||||
deleteItem: () => Promise<any> | void;
|
||||
iconFontSize?: number;
|
||||
iconFontColor?: string;
|
||||
items?: MenuProps['items'];
|
||||
height?: number;
|
||||
needsDeletionValidation?: boolean;
|
||||
@ -18,6 +19,7 @@ const OperateDropdown = ({
|
||||
deleteItem,
|
||||
children,
|
||||
iconFontSize = 30,
|
||||
iconFontColor = 'gray',
|
||||
items: otherItems = [],
|
||||
height = 24,
|
||||
needsDeletionValidation = true,
|
||||
@ -69,7 +71,7 @@ const OperateDropdown = ({
|
||||
rotate={90}
|
||||
style={{
|
||||
fontSize: iconFontSize,
|
||||
color: 'gray',
|
||||
color: iconFontColor,
|
||||
cursor: 'pointer',
|
||||
height,
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user