Skip to content

Commit

Permalink
Merge branch 'devel' into dbeaver/dbeaver-infra#30-add-singleton-task…
Browse files Browse the repository at this point in the history
…s-to-sm
  • Loading branch information
kseniaguzeeva authored May 24, 2024
2 parents b3f8682 + 15e5574 commit c2a43db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ParametersForm = observer<Props>(function ParametersForm({ config,
<Container gap>
{!embedded && (
<Container wrap gap>
<InputField type="text" name="host" state={config} disabled={disabled} readOnly={readOnly || !originLocal} small required>
<InputField type="text" name="host" state={config} disabled={disabled} readOnly={readOnly || !originLocal} small>
{translate('customConnection_custom_host')}
</InputField>
<InputField type="number" name="port" state={config} disabled={disabled} readOnly={readOnly || !originLocal} tiny>
Expand All @@ -38,7 +38,7 @@ export const ParametersForm = observer<Props>(function ParametersForm({ config,
{translate('customConnection_custom_database')}
</InputField>
{requiresServerName && (
<InputField type="text" name="serverName" state={config} disabled={disabled} readOnly={readOnly} required>
<InputField type="text" name="serverName" state={config} disabled={disabled} readOnly={readOnly}>
{translate('customConnection_custom_server_name')}
</InputField>
)}
Expand Down

0 comments on commit c2a43db

Please sign in to comment.