Skip to content

Commit

Permalink
Fixing the issue of being unable to connect to the default account in…
Browse files Browse the repository at this point in the history
… ClickHouse. The default account in ClickHouse is 'default', and the password is empty.
  • Loading branch information
jsRuner committed Mar 14, 2024
1 parent a207640 commit 6b2116b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/components/database/form-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function FormDialog({ open, choiceDBType, dbTypeList, editValue, dbNames, onClos
<Form.Item name="db_user" label="Username" className="mb-3" rules={[{ required: true }]}>
<Input />
</Form.Item>
<Form.Item name="db_pwd" label="Password" className="mb-3" rules={[{ required: true }]}>
<Form.Item name="db_pwd" label="Password" className="mb-3" rules={[{ required: false }]}>
<Input type="password" />
</Form.Item>
<Form.Item name="db_host" label="Host" className="mb-3" rules={[{ required: true }]}>
Expand Down

0 comments on commit 6b2116b

Please sign in to comment.