mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 23:16:43 +00:00
fix: Made default inflection as none for external data source
This commit is contained in:
@@ -66,8 +66,8 @@ const formState = ref<ProjectCreateForm>({
|
||||
title: '',
|
||||
dataSource: { ...getDefaultConnectionConfig(ClientType.MYSQL) },
|
||||
inflection: {
|
||||
inflectionColumn: 'camelize',
|
||||
inflectionTable: 'camelize',
|
||||
inflectionColumn: 'none',
|
||||
inflectionTable: 'none',
|
||||
},
|
||||
sslUse: SSLUsage.No,
|
||||
extraParameters: [],
|
||||
@@ -77,8 +77,8 @@ const customFormState = ref<ProjectCreateForm>({
|
||||
title: '',
|
||||
dataSource: { ...getDefaultConnectionConfig(ClientType.MYSQL) },
|
||||
inflection: {
|
||||
inflectionColumn: 'camelize',
|
||||
inflectionTable: 'camelize',
|
||||
inflectionColumn: 'none',
|
||||
inflectionTable: 'none',
|
||||
},
|
||||
sslUse: SSLUsage.No,
|
||||
extraParameters: [],
|
||||
@@ -614,7 +614,6 @@ const toggleModal = (val: boolean) => {
|
||||
</a-form-item>
|
||||
|
||||
<a-divider />
|
||||
|
||||
<a-form-item :label="$t('labels.inflection.tableName')">
|
||||
<a-select
|
||||
v-model:value="formState.inflection.inflectionTable"
|
||||
|
||||
Reference in New Issue
Block a user