File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
src/entities/connection/ui/ConnectionTypeForm/components Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const ConnectionClickhouse = () => {
1616 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1717 < Input size = "large" />
1818 </ Form . Item >
19- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
19+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
2020 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
2121 </ Form . Item >
2222 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const ConnectionFtp = () => {
1313 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1414 < Input size = "large" />
1515 </ Form . Item >
16- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
16+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
1717 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
1818 </ Form . Item >
1919 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const ConnectionSftp = () => {
1313 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1414 < Input size = "large" />
1515 </ Form . Item >
16- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
16+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
1717 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
1818 </ Form . Item >
1919 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const ConnectionMsSql = () => {
1616 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1717 < Input size = "large" />
1818 </ Form . Item >
19- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
19+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
2020 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
2121 </ Form . Item >
2222 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const ConnectionMySql = () => {
1616 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1717 < Input size = "large" />
1818 </ Form . Item >
19- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
19+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
2020 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
2121 </ Form . Item >
2222 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const ConnectionOracle = () => {
3737 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
3838 < Input size = "large" />
3939 </ Form . Item >
40- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
40+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
4141 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
4242 </ Form . Item >
4343 < Form . Item
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const ConnectionPostgres = () => {
1616 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1717 < Input size = "large" />
1818 </ Form . Item >
19- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
19+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
2020 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
2121 </ Form . Item >
2222 < ConnectionAuthBasic />
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const ConnectionFtps = () => {
1313 < Form . Item label = { t ( 'host' ) } name = { [ 'connection_data' , 'host' ] } rules = { [ { required : true } ] } >
1414 < Input size = "large" />
1515 </ Form . Item >
16- < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } rules = { [ { required : true } ] } >
16+ < Form . Item label = { t ( 'port' ) } name = { [ 'connection_data' , 'port' ] } >
1717 < InputNumber size = "large" min = { MIN_ALLOWED_PORT } max = { MAX_ALLOWED_PORT } />
1818 </ Form . Item >
1919 < ConnectionAuthBasic />
You can’t perform that action at this time.
0 commit comments