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

pull/42481/head
lijianan 2 years ago committed by GitHub
parent ecc384e8b6
commit 9caba0919b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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}>

Loading…
Cancel
Save