Commit ff0255f8 by zhaochengxiang

去掉眼睛

parent a9576742
......@@ -99,7 +99,6 @@ const DatasourceItem = (props) => {
</Row>
</>
}
</Spin>
}
</div>
......
......@@ -303,7 +303,7 @@ const UpdateDatasourceModal = (props) => {
key={index}
rules={[{ required: item.required, message: '必填项'}]}
>
<Input />
{ ( item.show ? <Input /> : <Input.Password visibilityToggle={false} /> ) }
</Form.Item>
)
})
......@@ -338,7 +338,7 @@ const UpdateDatasourceModal = (props) => {
选择文件上传
</Button>
</Upload>
) : ( item.show ? <Input /> : <Input.Password /> ) }
) : ( item.show ? <Input /> : <Input.Password visibilityToggle={false} /> ) }
</Form.Item>
)
})
......
......@@ -197,7 +197,7 @@ const UpdateTaskModal = (props) => {
rules={[{ required: param.required, message: '必填项'}]}
>
{
( param.show ? <Input /> : <Input.Password /> )
( param.show ? <Input /> : <Input.Password visibilityToggle={false} /> )
}
</Form.Item>
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment