Merge pull request #518 from usual2970/hotfix/display

解决分支过多内容展示不完整的问题
This commit is contained in:
Yoan.liu 2025-03-14 07:10:13 +08:00 committed by GitHub
commit b8796991b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,7 +31,7 @@ const WorkflowElements = ({ className, style, disabled }: WorkflowElementsProps)
return (
<div className={className} style={style}>
<div className="flex flex-col items-center overflow-auto">{elements}</div>
<div className="flex w-max min-w-full flex-col items-center">{elements}</div>
</div>
);
};