mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 09:44:47 +00:00
Workflow experience optimization (#2681)
* perf: workflow handle connect * feat: pan drag mode * perf: workflow keyboard and touchTable adapt * perf: teaxtarea no wheel * remove render error
This commit is contained in:
@@ -68,7 +68,13 @@ const AIModelSelector = ({ list, onchange, disableTip, ...props }: Props) => {
|
||||
|
||||
return (
|
||||
<MyTooltip label={disableTip}>
|
||||
<MySelect isDisabled={!!disableTip} list={expandList} {...props} onchange={onSelect} />
|
||||
<MySelect
|
||||
className="nowheel"
|
||||
isDisabled={!!disableTip}
|
||||
list={expandList}
|
||||
{...props}
|
||||
onchange={onSelect}
|
||||
/>
|
||||
</MyTooltip>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user