demo: update form demo when layout === inline (#42476)

This commit is contained in:
lijianan 2023-05-18 19:40:35 +08:00 committed by GitHub
parent ecc384e8b6
commit 9caba0919b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
import React, { useState } from 'react';
import { Button, Form, Input, Radio } from 'antd';
import React, { useState } from 'react';
type LayoutType = Parameters<typeof Form>[0]['layout'];
@ -24,7 +24,7 @@ const App: React.FC = () => {
form={form}
initialValues={{ layout: formLayout }}
onValuesChange={onFormLayoutChange}
style={{ maxWidth: 600 }}
style={{ maxWidth: formLayout === 'inline' ? 'none' : 600 }}
>
<Form.Item label="Form Layout" name="layout">
<Radio.Group value={formLayout}>