mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 01:27:05 +00:00
fix: Made default inflection as none for external data source
This commit is contained in:
@@ -61,8 +61,8 @@ const formState = ref<ProjectCreateForm>({
|
||||
title: '',
|
||||
dataSource: { ...getDefaultConnectionConfig(ClientType.MYSQL) },
|
||||
inflection: {
|
||||
inflectionColumn: 'camelize',
|
||||
inflectionTable: 'camelize',
|
||||
inflectionColumn: 'none',
|
||||
inflectionTable: 'none',
|
||||
},
|
||||
sslUse: SSLUsage.No,
|
||||
extraParameters: [],
|
||||
@@ -72,8 +72,8 @@ const customFormState = ref<ProjectCreateForm>({
|
||||
title: '',
|
||||
dataSource: { ...getDefaultConnectionConfig(ClientType.MYSQL) },
|
||||
inflection: {
|
||||
inflectionColumn: 'camelize',
|
||||
inflectionTable: 'camelize',
|
||||
inflectionColumn: 'none',
|
||||
inflectionTable: 'none',
|
||||
},
|
||||
sslUse: SSLUsage.No,
|
||||
extraParameters: [],
|
||||
|
||||
Reference in New Issue
Block a user