修改创建任务视图样式

This commit is contained in:
whyour 2022-11-11 15:03:27 +08:00
parent f113eb7ba8
commit 8fdd8db51b

View File

@ -94,7 +94,7 @@ const ViewCreateModal = ({
}, [view, visible]); }, [view, visible]);
const operationElement = ( const operationElement = (
<Select style={{ width: 100 }}> <Select style={{ width: 80 }}>
{OPERATIONS.map((x) => ( {OPERATIONS.map((x) => (
<Select.Option key={x.name} value={x.value}> <Select.Option key={x.name} value={x.value}>
{x.name} {x.name}
@ -226,7 +226,7 @@ const ViewCreateModal = ({
name={[name, 'property']} name={[name, 'property']}
rules={[{ required: true }]} rules={[{ required: true }]}
> >
{propertyElement(PROPERTIES, { width: 120 })} {propertyElement(PROPERTIES, { width: 90 })}
</Form.Item> </Form.Item>
<Form.Item <Form.Item
{...restField} {...restField}