mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-24 15:36:50 +08:00
Feat: The key for the begin operator can only contain alphanumeric characters and underscores. #10427 (#11377)
### What problem does this PR solve? Feat: The key for the begin operator can only contain alphanumeric characters and underscores. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -12,9 +12,12 @@ export const LogicalOperatorIcon = function OperatorIcon({
|
||||
return (
|
||||
<IconFont
|
||||
name={icon}
|
||||
className={cn('size-4', {
|
||||
'rotate-180': value === ComparisonOperator.GreatThan,
|
||||
})}
|
||||
className={cn('size-4')}
|
||||
style={
|
||||
value === ComparisonOperator.GreatThan
|
||||
? { transform: 'rotate(180deg)' }
|
||||
: undefined
|
||||
}
|
||||
></IconFont>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user