-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix create source form display and label consistencies #1668
Conversation
@@ -481,21 +481,20 @@ export function SourceDetailPage() { | |||
</Form.Item> | |||
{dataProviderConfigTemplateLoading && <LoadingOutlined />} | |||
|
|||
{(providerType !== 'FILE' || formType === CommonFormTypes.Edit) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lyp000119 what is provider type file and format type edit, is it necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lyp000119 什么是provider type file和format type edit,有必要吗?
It can be modified like this, no problem
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏿 Good
This display issue was previously raised #1177 However, issue still there on demo site. |
Thank you! |
Thanks for the contribution! |
@@ -527,7 +526,7 @@ const Content = styled.div` | |||
} | |||
|
|||
.detailForm { | |||
max-width: ${SPACE_TIMES(240)}; | |||
max-width: ${SPACE_TIMES(400)}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change it to 400x?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current JDBC screen has the field labels truncated. See the last few fields below.
Roger that 👌
Hello
This is for #1292
Please help review. Screenshots after fix are attached in above issue page. Also remove the condition at line 484 to display the form when provider FILE is selected.