fix(nc-gui): review changes

This commit is contained in:
Ramesh Mane
2024-08-16 15:41:40 +00:00
parent 4a09db167a
commit e0c2bdf5d2
2 changed files with 2 additions and 5 deletions

View File

@@ -360,7 +360,6 @@ const changeIntegration = (triggerTestConnection = false) => {
formState.value.dataSource = {
client: selectedIntegration.value.sub_type,
connection: {
client: selectedIntegration.value.sub_type,
database: selectedIntegrationDb.value,
},
searchPath: selectedIntegration.value.config?.searchPath,
@@ -426,7 +425,7 @@ const isIntgrationDisabled = (integration: IntegrationType = {}) => {
case ClientType.SQLITE:
return {
isDisabled: integration?.source_count && integration.source_count > 0,
msg: 'Sqlite support only 1 database per integration',
msg: 'Sqlite support only 1 database per connection',
}
default:

View File

@@ -294,11 +294,9 @@ onMounted(async () => {
.filter(([key]) => !definedParameters.includes(key))
.map(([key, value]) => ({ key: key as string, value: value as string }))
const client = activeBase.config?.client || activeBase.config?.connection?.client
formState.value = {
title: activeBase.alias || '',
dataSource: { client, connection: {}, ...(activeBase.config || {}), searchPath: activeBase.config?.searchPath || [] },
dataSource: { connection: {}, ...(activeBase.config || {}), searchPath: activeBase.config?.searchPath || [] },
inflection: {
inflectionColumn: activeBase.inflection_column,
inflectionTable: activeBase.inflection_table,