perf: add tips for add server modal

This commit is contained in:
moonrailgun 2023-11-10 09:55:35 +08:00
parent 0b508a40b1
commit b1dc092737

View File

@ -77,11 +77,17 @@ export const WebsiteList: React.FC = React.memo(() => {
<Form.Item <Form.Item
label="Server Name" label="Server Name"
name="name" name="name"
tooltip="Server Name to Display"
rules={[{ required: true }]} rules={[{ required: true }]}
> >
<Input /> <Input />
</Form.Item> </Form.Item>
<Form.Item label="Domain" name="domain" rules={[{ required: true }]}> <Form.Item
label="Domain"
name="domain"
tooltip="Your server domain, or ip."
rules={[{ required: true }]}
>
<Input /> <Input />
</Form.Item> </Form.Item>
</Form> </Form>