style(FlowEditor): 调整条件表格组件的样式配置

master
钟良源 2 hours ago
parent 5bfc73751f
commit beca6752a6

@ -71,8 +71,10 @@ const ConditionsTable: React.FC<ConditionsTableProps> = ({
{
title: '逻辑出口',
dataIndex: 'apiOutId',
width: 100,
render: (_: any, record: TableDataItem) => (
<Input
autoWidth={{ minWidth: 100, maxWidth: 500 }}
value={record.apiOutId}
onChange={(value) => {
// 仅更新本地状态,不立即触发保存
@ -134,7 +136,7 @@ const ConditionsTable: React.FC<ConditionsTableProps> = ({
dataIndex: 'operator',
render: (_: any, record: TableDataItem) => (
<Select
autoWidth={{ minWidth: 200, maxWidth: 500 }}
autoWidth={{ minWidth: 80, maxWidth: 500 }}
options={operationOptions}
value={record.operator}
onChange={(value) => {

Loading…
Cancel
Save