Skip to content

Commit ae99044

Browse files
committed
fix(wren-ui): fix lint error
1 parent 8a8d929 commit ae99044

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

wren-ui/src/apollo/server/adaptors/tests/ibisAdaptor.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ describe('IbisAdaptor', () => {
4747
database: 'my-database',
4848
user: 'my-user',
4949
password: 'my-password',
50+
ssl: false,
5051
};
5152

5253
const mockPostgresConnectionInfo: POSTGRES_CONNECTION_INFO = {

wren-ui/src/components/pages/setup/dataSources/MySQLProperties.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ export default function MySQLProperties(props: Props) {
6363
>
6464
<Input />
6565
</Form.Item>
66-
<Form.Item
67-
label="Password"
68-
name="password"
69-
>
66+
<Form.Item label="Password" name="password">
7067
<Input.Password placeholder="input password" />
7168
</Form.Item>
7269
<Form.Item

wren-ui/src/components/pages/setup/dataSources/OracleProperties.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Form, Input, Switch } from 'antd';
1+
import { Form, Input } from 'antd';
22
import { ERROR_TEXTS } from '@/utils/error';
33
import { FORM_MODE } from '@/utils/enum';
44
import { hostValidator } from '@/utils/validator';

0 commit comments

Comments
 (0)